Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
chore(format): proper spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcrea committed Sep 25, 2014
1 parent a4ddfb1 commit 42c6244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/date-parser.js
Expand Up @@ -95,7 +95,7 @@ angular.module('mgcrea.ngStrap.helpers.dateParser', [])
if(!matches) return false;
var date = baseDate && !isNaN(baseDate.getTime()) ? baseDate : new Date(1970, 0, 1, 0);
for(var i = 0; i < matches.length - 1; i++) {
formatSetMap[i] && formatSetMap[i].call(date, matches[i+1]);
formatSetMap[i] && formatSetMap[i].call(date, matches[i+1]);
}
return date;
};
Expand Down

0 comments on commit 42c6244

Please sign in to comment.