define(["knockoutbase"], function (a) { | |
a.bindingHandlers.slide = { | |
update: function (b, e) { | |
var c = a.utils.unwrapObservable(e()), | |
d = "none" != b.style.display; | |
c && !d ? $(b).slideDown() : !c && d && $(b).slideUp() | |
} | |
}; | |
window.ko = a; | |
require(["3rd/knockout.simpleGrid"]); | |
return a | |
}); |