File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -126,9 +126,9 @@ module.exports = function( grunt ) {
126
126
// renames JS/CSS to prepend a hash of their contents for easier
127
127
// versioning
128
128
rev : {
129
- js : 'scripts/**/*.js' ,
130
- css : 'styles/**/*.css' ,
131
- img : 'images/**'
129
+ // js: 'scripts/**/*.js',
130
+ // css: 'styles/**/*.css',
131
+ // img: 'images/**'
132
132
} ,
133
133
134
134
// usemin handler should point to the file containing
Original file line number Diff line number Diff line change 2
2
3
3
angular . module ( 'ePlayerServices' , [ 'ngResource' ] )
4
4
. factory ( 'Template' , function ( $resource ) {
5
- return $resource ( '/data/:templateId.json' , { } , {
5
+ return $resource ( '. /data/:templateId.json' , { } , {
6
6
query : { method : 'GET' , params : { templateId : '1' } , isArray : true }
7
7
} ) ;
8
8
} ) ;
You can’t perform that action at this time.
0 commit comments