diff options
| author | Johann-S <[email protected]> | 2017-09-08 10:49:10 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-09-08 10:49:10 +0200 |
| commit | cad22335ede2d2d9d0242f86cd859752bbfb14ea (patch) | |
| tree | 64ec9dab7489660c48c9277a1d6ba99645704424 /docs/4.0/examples | |
| parent | d3d06583c53c1a77a955b54f43498f5788e692d8 (diff) | |
| parent | 84b3097a4a13a9d15303cd6e144aad814dbeae12 (diff) | |
| download | bootstrap-cad22335ede2d2d9d0242f86cd859752bbfb14ea.tar.xz bootstrap-cad22335ede2d2d9d0242f86cd859752bbfb14ea.zip | |
Merge pull request #23876 from vsn4ik/v4-dev-dont-use-short-jquery
Dont use short jQuery methods in documentations
Diffstat (limited to 'docs/4.0/examples')
| -rw-r--r-- | docs/4.0/examples/offcanvas/offcanvas.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.0/examples/offcanvas/offcanvas.js b/docs/4.0/examples/offcanvas/offcanvas.js index d14cd68b8..a89262a26 100644 --- a/docs/4.0/examples/offcanvas/offcanvas.js +++ b/docs/4.0/examples/offcanvas/offcanvas.js @@ -1,5 +1,5 @@ $(document).ready(function () { - $('[data-toggle="offcanvas"]').click(function () { + $('[data-toggle="offcanvas"]').on('click', function () { $('.row-offcanvas').toggleClass('active') }); }); |
