Le sigh - needed to make a new ImportLogViewModel - can't be shared because of DenyPreviousMonth

This commit is contained in:
2014-02-05 20:30:29 -05:00
parent 0a492156a5
commit ff0b2a140c
17 changed files with 142 additions and 57 deletions
+6 -1
View File
@@ -96,11 +96,16 @@ $(function() {
'vehicle-nav': /\/vehicle/i,
'user-nav': /\/user/i
};
var set = false;
$.each(idNavActiveRegex, function (id, regex) {
if (regex.test(document.URL)) {
$("#" + id).addClass('active');
$("#" + id).addClass('active');
set = true;
}
});
if (!set) {
$("#" + 'create-nav').addClass('active');
}
});
function addButtonIcons () {