blob: 7301dcacf6e5db3afda14d41c94599b5a11c60f6 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001define(["knockoutbase"], function (a) {
2 a.bindingHandlers.slide = {
3 update: function (b, e) {
4 var c = a.utils.unwrapObservable(e()),
5 d = "none" != b.style.display;
6 c && !d ? $(b).slideDown() : !c && d && $(b).slideUp()
7 }
8 };
9 window.ko = a;
10 require(["3rd/knockout.simpleGrid"]);
11 return a
12});