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

Commit

Permalink
fix(typo): remove unnecessary semicolon
Browse files Browse the repository at this point in the history
According to "grunt jshint" task this semicolon is unnecessary, so it's impossible to
build module with "grunt build" task without this fix.
  • Loading branch information
DWand committed Aug 6, 2013
1 parent e688dee commit 54cb232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/translate.js
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ angular.module('pascalprecht.translate').provider('$translate', ['$STORAGE_KEY',

deferred.resolve(key);
$rootScope.$broadcast('$translateChangeEnd');
};
}

// if there isn't a translation table for the language we've requested,
// we load it asynchronously
Expand Down

0 comments on commit 54cb232

Please sign in to comment.