Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorZlatan Vasović <legospace9876@gmail.com>2014-01-01 18:42:41 +0400
committerZlatan Vasović <legospace9876@gmail.com>2014-01-01 18:42:41 +0400
commit0f060e7bc435e1048b7fc564673049704cc41dd4 (patch)
treeabae038349ccdc953501f8d67d6807376f1fe77f /js
parent50cf0b1a9d883ae3c4054dfd4071963fdf8aa812 (diff)
'use strict' on new line
Diffstat (limited to 'js')
-rw-r--r--js/affix.js3
-rw-r--r--js/alert.js3
-rw-r--r--js/button.js3
-rw-r--r--js/carousel.js3
-rw-r--r--js/collapse.js3
-rw-r--r--js/dropdown.js3
-rw-r--r--js/modal.js3
-rw-r--r--js/popover.js3
-rw-r--r--js/scrollspy.js3
-rw-r--r--js/tab.js3
-rw-r--r--js/tooltip.js3
-rw-r--r--js/transition.js3
12 files changed, 24 insertions, 12 deletions
diff --git a/js/affix.js b/js/affix.js
index bc11feaa8e..e711b4f9e6 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 e15658492c..b9818e2fbf 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 34a61f58ad..824daa702d 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 a9a2eb2d16..3fdc505d56 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 cd8f38439b..993ac3fc29 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 1e25403fc0..4eaf72d4a2 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 856ea7cd85..ab2bd850e4 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 3fd29802d8..8ee9ba0e25 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 fecd8a4466..0d40ea550d 100644
--- a/js/scrollspy.js
+++ b/js/scrollspy.js
@@ -7,7 +7,8 @@
* ======================================================================== */
-+function ($) { 'use strict';
++function ($) {
+ 'use strict';
// SCROLLSPY CLASS DEFINITION
// ==========================
diff --git a/js/tab.js b/js/tab.js
index d2f24ff846..92a7199945 100644
--- a/js/tab.js
+++ b/js/tab.js
@@ -7,7 +7,8 @@
* ======================================================================== */
-+function ($) { 'use strict';
++function ($) {
+ 'use strict';
// TAB CLASS DEFINITION
// ====================
diff --git a/js/tooltip.js b/js/tooltip.js
index d491fea0ea..d938808248 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 fac318af90..250f8d6595 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/)
// ============================================================