diff options
| author | David | 2013-07-13 15:50:29 -0700 |
|---|---|---|
| committer | Pawel Kozlowski | 2013-07-14 16:06:38 +0200 |
| commit | 1122b3c14da4372f5de5a270108663f1cf7e6649 (patch) | |
| tree | 613e9ee5649b499eb7c3da562a942a3741a52fbb /src/ngMock/angular-mocks.js | |
| parent | a357649da5d9f0633fa8e8a249f58dfc1105698e (diff) | |
| download | angular.js-1122b3c14da4372f5de5a270108663f1cf7e6649.tar.bz2 | |
style(ngMock): add missing whitespace
Diffstat (limited to 'src/ngMock/angular-mocks.js')
| -rw-r--r-- | src/ngMock/angular-mocks.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 5798c360..4afaa2ec 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -29,7 +29,7 @@ angular.mock = {}; * that there are several helper methods available which can be used in tests. */ angular.mock.$BrowserProvider = function() { - this.$get = function(){ + this.$get = function() { return new angular.mock.$Browser(); }; }; @@ -412,7 +412,7 @@ angular.mock.$LogProvider = function() { (function() { var R_ISO8061_STR = /^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?:\:?(\d\d)(?:\:?(\d\d)(?:\.(\d{3}))?)?)?(Z|([+-])(\d\d):?(\d\d)))?$/; - function jsonStringToDate(string){ + function jsonStringToDate(string) { var match; if (match = string.match(R_ISO8061_STR)) { var date = new Date(0), |
