Release commit

This commit is contained in:
RainLoop Team 2015-02-15 04:30:21 +04:00
parent 86f855fa5b
commit b01f298b7b
13 changed files with 121 additions and 42 deletions

14
dev/External/ko.js vendored
View file

@ -287,7 +287,19 @@
});
},
'update': function (oElement, fValueAccessor) {
$(oElement).modal(ko.unwrap(fValueAccessor()) ? 'show' : 'hide');
var Globals = require('Common/Globals');
$(oElement).modal(!!ko.unwrap(fValueAccessor()) ? 'show' : 'hide');
if (Globals.$html.hasClass('rl-anim'))
{
Globals.$html.addClass('rl-modal-animation');
_.delay(function () {
Globals.$html.removeClass('rl-modal-animation');
}, 400);
}
}
};