lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | define(["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 | }); |