Skip to content

Commit aa2995c

Browse files
committed
Merge pull request #7 from gion/dev
bug fix
2 parents 3d76592 + 9dcb001 commit aa2995c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "__MSG_appName__",
33
"short_name": "__MSG_appShortName__",
4-
"version": "0.1.0",
4+
"version": "0.1.2",
55
"manifest_version": 2,
66
"description": "__MSG_appDescription__",
77
"icons": {

app/scripts/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ angular.module('bitShip', []);
77

88
angular
99
.module('bitShip')
10-
.controller('bitShipOptionsController', bitShipOptionsController);
10+
.controller('bitShipOptionsController', ['$scope', bitShipOptionsController]);
1111

1212
function bitShipOptionsController($scope) {
1313

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ gulp.task('build', function(callback) {
1010
'html',
1111
'images',
1212
'locales',
13-
'manifest',
1413
'scripts',
14+
'manifest',
1515
'styles'
1616
],
1717
'package',
@@ -34,13 +34,13 @@ gulp.task('watch', function(callback) {
3434
'html:dev',
3535
'images:dev',
3636
'locales:dev',
37-
'manifest:dev',
3837
'scripts:dev',
38+
'manifest:dev',
3939
'styles:dev'
4040
],
4141
callback);
4242
});
4343

4444
gulp.task('default', [
4545
'build'
46-
]);
46+
]);

0 commit comments

Comments
 (0)