Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
fix(*): jshint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0x-r4bbit committed Jan 31, 2014
1 parent c9464f6 commit 1e3f8a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/service/translate.js
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ angular.module('pascalprecht.translate').provider('$translate', ['$STORAGE_KEY',
if ($translationTable[data.key]) {
delete $translationTable[data.key];
}
translations(data.key, data.table)
translations(data.key, data.table);
});
resolve();
});
Expand Down
2 changes: 1 addition & 1 deletion test/unit/service/translate.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ describe('pascalprecht.translate', function () {
}]);
}));

var $translate, $timeout, $rootScope, $q
var $translate, $timeout, $rootScope, $q;

beforeEach(inject(function (_$translate_, _$timeout_, _$rootScope_, _$q_) {
$translate = _$translate_;
Expand Down

0 comments on commit 1e3f8a6

Please sign in to comment.