Code refactoring (4) (es5 -> es2015)

This commit is contained in:
RainLoop Team 2016-07-15 22:54:37 +03:00
parent e8df1cdb57
commit d7ab67a460
30 changed files with 164 additions and 173 deletions

7
dev/External/ko.js vendored
View file

@ -1201,6 +1201,13 @@ ko.extenders.specialThrottle = function(oTarget, iOption)
return oTarget;
};
ko.extenders.idleTrigger = function(oTarget)
{
var Enums = require('Common/Enums');
oTarget.trigger = ko.observable(Enums.SaveSettingsStep.Idle);
return oTarget;
};
// functions
ko.observable.fn.validateNone = function()