Skip to content

Commit 39e941f

Browse files
committed
v0.6 - Rectify the path to JSON for yeoman build
1 parent 30c0a4b commit 39e941f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gruntfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ module.exports = function( grunt ) {
126126
// renames JS/CSS to prepend a hash of their contents for easier
127127
// versioning
128128
rev: {
129-
js: 'scripts/**/*.js',
130-
css: 'styles/**/*.css',
131-
img: 'images/**'
129+
// js: 'scripts/**/*.js',
130+
// css: 'styles/**/*.css',
131+
// img: 'images/**'
132132
},
133133

134134
// usemin handler should point to the file containing

app/scripts/services.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
angular.module('ePlayerServices', ['ngResource'])
44
.factory('Template', function ($resource) {
5-
return $resource('/data/:templateId.json', {}, {
5+
return $resource('./data/:templateId.json', {}, {
66
query: {method: 'GET', params: {templateId: '1'}, isArray: true}
77
});
88
});

0 commit comments

Comments
 (0)