diff options
| author | Bardi Harborow <[email protected]> | 2016-12-31 16:25:26 +1100 |
|---|---|---|
| committer | Bardi Harborow <[email protected]> | 2016-12-31 16:49:15 +1100 |
| commit | 869dc6403805ee524b8321b40168d1022e17602c (patch) | |
| tree | 948eb11e844fc7e8195aee5ddc001fb2ec080026 /docs/assets/js/src/application.js | |
| parent | a8100e1f0113c82fea78d1d87e62ceba630fd18b (diff) | |
| download | bootstrap-869dc6403805ee524b8321b40168d1022e17602c.tar.xz bootstrap-869dc6403805ee524b8321b40168d1022e17602c.zip | |
Change remaining JS files to comply with ESLint config.
Diffstat (limited to 'docs/assets/js/src/application.js')
| -rw-r--r-- | docs/assets/js/src/application.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/assets/js/src/application.js b/docs/assets/js/src/application.js index 529b0c1b8..fee96113d 100644 --- a/docs/assets/js/src/application.js +++ b/docs/assets/js/src/application.js @@ -12,8 +12,8 @@ /* global Clipboard, anchors */ -!function ($) { - 'use strict'; +(function ($) { + 'use strict' $(function () { @@ -86,11 +86,11 @@ }) -}(jQuery) +}(jQuery)) ;(function () { - 'use strict'; + 'use strict' - anchors.options.placement = 'left'; + anchors.options.placement = 'left' anchors.add('.bd-content > h1, .bd-content > h2, .bd-content > h3, .bd-content > h4, .bd-content > h5') -})(); +}()) |
