Release fixes

This commit is contained in:
RainLoop Team 2015-05-12 20:33:02 +04:00
parent 5b6c90aea9
commit f91f74fe7c
21 changed files with 398 additions and 83 deletions

6
dev/External/ko.js vendored
View file

@ -275,8 +275,7 @@
ko.bindingHandlers.csstext = {
'init': function (oElement, fValueAccessor) {
var Utils = require('Common/Utils');
if (oElement && oElement.styleSheet && !Utils.isUnd(oElement.styleSheet.cssText))
if (oElement && oElement.styleSheet && undefined !== oElement.styleSheet.cssText)
{
oElement.styleSheet.cssText = ko.unwrap(fValueAccessor());
}
@ -286,8 +285,7 @@
}
},
'update': function (oElement, fValueAccessor) {
var Utils = require('Common/Utils');
if (oElement && oElement.styleSheet && !Utils.isUnd(oElement.styleSheet.cssText))
if (oElement && oElement.styleSheet && undefined !== oElement.styleSheet.cssText)
{
oElement.styleSheet.cssText = ko.unwrap(fValueAccessor());
}