File tree 4 files changed +13
-2
lines changed
4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 21
21
],
22
22
"description" : " Random message widget for the angular-dashboard-framework" ,
23
23
"dependencies" : {
24
- "angular-dashboard-framework" : " 0.7 .0"
24
+ "angular-dashboard-framework" : " 0.8 .0"
25
25
},
26
26
"devDependencies" : {
27
27
"angular-local-storage" : " 0.1.5"
Original file line number Diff line number Diff line change @@ -87,10 +87,12 @@ gulp.task('js', function() {
87
87
. pipe ( $ . if ( '*.html' , $ . minifyHtml ( ) ) )
88
88
. pipe ( $ . if ( '*.html' , $ . angularTemplatecache ( pkg . name + '.tpl.js' , templateOptions ) ) )
89
89
. pipe ( $ . angularFilesort ( ) )
90
+ . pipe ( $ . if ( '*.js' , $ . replace ( / ' u s e s t r i c t ' ; / g, '' ) ) )
90
91
. pipe ( $ . concat ( pkg . name + '.js' ) )
92
+ . pipe ( $ . headerfooter ( '(function(window, undefined) {\'use strict\';\n' , '})(window);' ) )
93
+ . pipe ( $ . ngAnnotate ( annotateOptions ) )
91
94
. pipe ( gulp . dest ( 'dist' ) )
92
95
. pipe ( $ . rename ( pkg . name + '.min.js' ) )
93
- . pipe ( $ . ngAnnotate ( annotateOptions ) )
94
96
. pipe ( $ . uglify ( ) )
95
97
. pipe ( gulp . dest ( 'dist' ) ) ;
96
98
} ) ;
Original file line number Diff line number Diff line change 16
16
"gulp-concat" : " ^2.5.2" ,
17
17
"gulp-connect" : " ~2.2.0" ,
18
18
"gulp-csslint" : " ^0.1.5" ,
19
+ "gulp-headerfooter" : " ^1.0.3" ,
19
20
"gulp-if" : " ^1.2.5" ,
20
21
"gulp-inject" : " ^1.2.0" ,
21
22
"gulp-jshint" : " ^1.9.4" ,
25
26
"gulp-minify-html" : " ^1.0.1" ,
26
27
"gulp-ng-annotate" : " ^0.5.2" ,
27
28
"gulp-rename" : " ^1.2.0" ,
29
+ "gulp-replace" : " ^0.5.3" ,
28
30
"ng-annotate-adf-plugin" : " ^0.1.2" ,
29
31
"gulp-uglify" : " ^1.1.0" ,
30
32
"jshint-stylish" : " ^1.0.1" ,
Original file line number Diff line number Diff line change 13
13
14
14
<!-- inject:css -->
15
15
<!-- endinject -->
16
+
17
+ <!-- inlince css -->
18
+ < style type ="text/css ">
19
+ body {
20
+ padding-top : 60px ;
21
+ }
22
+ </ style >
16
23
</ head >
17
24
18
25
< body ng-app ="adfWidgetSample ">
You can’t perform that action at this time.
0 commit comments