diff --git a/gulpfile.js b/gulpfile.js index 13f8a5fddb34e234ba1e715d0ecbd29ee207c288..38c4583509b6ed07aeafe77df093e50fc19bab0d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -459,7 +459,7 @@ gulp.task('optimize-api-files:web', ['debug-api-files:web'], function(done) { var cssFilter = filter("**/*.css", { restore: true }); var revFilesFilter = filter(['**/*', '!**/index.html', '!**/config.js'], { restore: true }); var indexFilter = filter('**/index.html', { restore: true }); - var uglifyOptions = {beautify: false}; + var uglifyOptions = {beautify: false, max_line_len: 120000};; // Process index.html gulp.src(tmpPath + '/*/index.html') @@ -506,7 +506,7 @@ gulp.task('optimize-files:web', ['debug-files:web'], function(done) { var jsFilter = filter(["**/*.js", '!**/config.js'], { restore: true }); var cssFilter = filter("**/*.css", { restore: true }); var revFilesFilter = filter(['**/*', '!**/index.html', '!**/config.js'], { restore: true }); - var uglifyOptions = {beautify: false}; + var uglifyOptions = {beautify: false, max_line_len: 120000}; // Process index.html gulp.src(tmpPath + '/index.html') diff --git a/www/api/index.html b/www/api/index.html index 6a3f64ef96a6fa6249f4d8cb3aaa31615d421145..7badbd6304caa6fb8acd31cefb888469f471f87a 100644 --- a/www/api/index.html +++ b/www/api/index.html @@ -49,6 +49,7 @@ <script src="../lib/ionic/js/angular/angular-bind-notifier.min.js"></script> <script src="../lib/ionic/js/angular/angular-file-saver.bundle.js"></script> <script src="../lib/ionic/js/angular/angular-idle.js"></script> +<script src="../lib/ionic/js/angular/angular-fullscreen.js"></script> <script src="../js/vendor/base58.js" async></script> <!--removeIf(android)--> diff --git a/www/index.html b/www/index.html index 984b1d41a0606eb62e4d908ac99561339583e184..6d3c668e97dcc1370294fa4e9cd9c16bf79bbd28 100644 --- a/www/index.html +++ b/www/index.html @@ -25,6 +25,7 @@ <link rel="stylesheet" type="text/css" href="css/leaflet.app.min.css"> <link rel="stylesheet" type="text/css" href="dist/dist_css/plugins/es/css/style.css"> <link rel="stylesheet" type="text/css" href="dist/dist_css/plugins/graph/css/style.css"> + <link rel="stylesheet" type="text/css" href="dist/dist_css/plugins/graph/css/style.css"> <link rel="stylesheet" type="text/css" href="dist/dist_css/plugins/map/css/style.css"> <!--endRemoveIf(no-plugin)--> <!-- endbuild --> diff --git a/www/js/api/app.js b/www/js/api/app.js index 811e696e1998a09bd4a8b5dc7ce0bf3558380bbe..86aa5673f2eafd3a456d031c8938dded0c46ec6c 100644 --- a/www/js/api/app.js +++ b/www/js/api/app.js @@ -5,6 +5,7 @@ // the 2nd parameter is an array of 'requires' // 'starter.controllers' is found in controllers.js angular.module('cesium-api', ['ionic', 'ionic-material', 'ngMessages', 'pascalprecht.translate', 'ngApi', 'angular-cache', 'angular.screenmatch', + 'FBAngular', // = angular-fullscreen // removeIf(no-device) 'ngCordova', // endRemoveIf(no-device)