Skip to content
Snippets Groups Projects
Commit fe158348 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Fix API break (missing fullscreen lib)

parent 2438e1e6
No related branches found
No related tags found
No related merge requests found
......@@ -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')
......
......@@ -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)-->
......
......@@ -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 -->
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment