We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c0a4b commit 39e941fCopy full SHA for 39e941f
Gruntfile.js
@@ -126,9 +126,9 @@ module.exports = function( grunt ) {
126
// renames JS/CSS to prepend a hash of their contents for easier
127
// versioning
128
rev: {
129
- js: 'scripts/**/*.js',
130
- css: 'styles/**/*.css',
131
- img: 'images/**'
+ // js: 'scripts/**/*.js',
+ // css: 'styles/**/*.css',
+ // img: 'images/**'
132
},
133
134
// usemin handler should point to the file containing
app/scripts/services.js
@@ -2,7 +2,7 @@
2
3
angular.module('ePlayerServices', ['ngResource'])
4
.factory('Template', function ($resource) {
5
- return $resource('/data/:templateId.json', {}, {
+ return $resource('./data/:templateId.json', {}, {
6
query: {method: 'GET', params: {templateId: '1'}, isArray: true}
7
});
8
0 commit comments