diff options
| author | Chris Rebert <[email protected]> | 2014-01-07 00:31:27 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-01-07 00:31:27 -0800 |
| commit | 5f328dce889823f1ec78844427a48da4c2eb6638 (patch) | |
| tree | bbe5210c3626cb2ef039ad294717dc9d9e663d7d /js | |
| parent | 5e39e6c9d025eec4269da8391f2ff928a076a66c (diff) | |
| parent | 0f060e7bc435e1048b7fc564673049704cc41dd4 (diff) | |
| download | bootstrap-5f328dce889823f1ec78844427a48da4c2eb6638.tar.xz bootstrap-5f328dce889823f1ec78844427a48da4c2eb6638.zip | |
Merge pull request #12057 from ZDroid/nl
'use strict' on new line
Diffstat (limited to 'js')
| -rw-r--r-- | js/affix.js | 3 | ||||
| -rw-r--r-- | js/alert.js | 3 | ||||
| -rw-r--r-- | js/button.js | 3 | ||||
| -rw-r--r-- | js/carousel.js | 3 | ||||
| -rw-r--r-- | js/collapse.js | 3 | ||||
| -rw-r--r-- | js/dropdown.js | 3 | ||||
| -rw-r--r-- | js/modal.js | 3 | ||||
| -rw-r--r-- | js/popover.js | 3 | ||||
| -rw-r--r-- | js/scrollspy.js | 3 | ||||
| -rw-r--r-- | js/tab.js | 3 | ||||
| -rw-r--r-- | js/tooltip.js | 3 | ||||
| -rw-r--r-- | js/transition.js | 3 |
12 files changed, 24 insertions, 12 deletions
diff --git a/js/affix.js b/js/affix.js index b4ae3b851..e3cb6a2a8 100644 --- a/js/affix.js +++ b/js/affix.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // AFFIX CLASS DEFINITION // ====================== diff --git a/js/alert.js b/js/alert.js index 2842d9608..357981f4f 100644 --- a/js/alert.js +++ b/js/alert.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // ALERT CLASS DEFINITION // ====================== diff --git a/js/button.js b/js/button.js index f05ef4e7f..2df193a9c 100644 --- a/js/button.js +++ b/js/button.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // BUTTON PUBLIC CLASS DEFINITION // ============================== diff --git a/js/carousel.js b/js/carousel.js index 9630ba6d8..e1e63f8af 100644 --- a/js/carousel.js +++ b/js/carousel.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // CAROUSEL CLASS DEFINITION // ========================= diff --git a/js/collapse.js b/js/collapse.js index f2af12742..1857cba16 100644 --- a/js/collapse.js +++ b/js/collapse.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // COLLAPSE PUBLIC CLASS DEFINITION // ================================ diff --git a/js/dropdown.js b/js/dropdown.js index e0d837dcf..a457c3758 100644 --- a/js/dropdown.js +++ b/js/dropdown.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // DROPDOWN CLASS DEFINITION // ========================= diff --git a/js/modal.js b/js/modal.js index 2246d2e4e..f6caab6bf 100644 --- a/js/modal.js +++ b/js/modal.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // MODAL CLASS DEFINITION // ====================== diff --git a/js/popover.js b/js/popover.js index 89ea151fb..386f5fd87 100644 --- a/js/popover.js +++ b/js/popover.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // POPOVER PUBLIC CLASS DEFINITION // =============================== diff --git a/js/scrollspy.js b/js/scrollspy.js index 32ae77fdc..65c45e975 100644 --- a/js/scrollspy.js +++ b/js/scrollspy.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // SCROLLSPY CLASS DEFINITION // ========================== @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // TAB CLASS DEFINITION // ==================== diff --git a/js/tooltip.js b/js/tooltip.js index b8ce6a134..a976bbf1e 100644 --- a/js/tooltip.js +++ b/js/tooltip.js @@ -8,7 +8,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // TOOLTIP PUBLIC CLASS DEFINITION // =============================== diff --git a/js/transition.js b/js/transition.js index f2c485800..45fc80f99 100644 --- a/js/transition.js +++ b/js/transition.js @@ -7,7 +7,8 @@ * ======================================================================== */ -+function ($) { 'use strict'; ++function ($) { + 'use strict'; // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) // ============================================================ |
