Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
0f060e7b
Commit
0f060e7b
authored
Jan 01, 2014
by
Zlatan Vasović
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'use strict' on new line
parent
50cf0b1a
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
24 additions
and
12 deletions
+24
-12
js/affix.js
js/affix.js
+2
-1
js/alert.js
js/alert.js
+2
-1
js/button.js
js/button.js
+2
-1
js/carousel.js
js/carousel.js
+2
-1
js/collapse.js
js/collapse.js
+2
-1
js/dropdown.js
js/dropdown.js
+2
-1
js/modal.js
js/modal.js
+2
-1
js/popover.js
js/popover.js
+2
-1
js/scrollspy.js
js/scrollspy.js
+2
-1
js/tab.js
js/tab.js
+2
-1
js/tooltip.js
js/tooltip.js
+2
-1
js/transition.js
js/transition.js
+2
-1
No files found.
js/affix.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// AFFIX CLASS DEFINITION
// AFFIX CLASS DEFINITION
// ======================
// ======================
...
...
js/alert.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// ALERT CLASS DEFINITION
// ALERT CLASS DEFINITION
// ======================
// ======================
...
...
js/button.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// BUTTON PUBLIC CLASS DEFINITION
// BUTTON PUBLIC CLASS DEFINITION
// ==============================
// ==============================
...
...
js/carousel.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// CAROUSEL CLASS DEFINITION
// CAROUSEL CLASS DEFINITION
// =========================
// =========================
...
...
js/collapse.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// COLLAPSE PUBLIC CLASS DEFINITION
// COLLAPSE PUBLIC CLASS DEFINITION
// ================================
// ================================
...
...
js/dropdown.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// DROPDOWN CLASS DEFINITION
// DROPDOWN CLASS DEFINITION
// =========================
// =========================
...
...
js/modal.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// MODAL CLASS DEFINITION
// MODAL CLASS DEFINITION
// ======================
// ======================
...
...
js/popover.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// POPOVER PUBLIC CLASS DEFINITION
// POPOVER PUBLIC CLASS DEFINITION
// ===============================
// ===============================
...
...
js/scrollspy.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// SCROLLSPY CLASS DEFINITION
// SCROLLSPY CLASS DEFINITION
// ==========================
// ==========================
...
...
js/tab.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// TAB CLASS DEFINITION
// TAB CLASS DEFINITION
// ====================
// ====================
...
...
js/tooltip.js
View file @
0f060e7b
...
@@ -8,7 +8,8 @@
...
@@ -8,7 +8,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// TOOLTIP PUBLIC CLASS DEFINITION
// TOOLTIP PUBLIC CLASS DEFINITION
// ===============================
// ===============================
...
...
js/transition.js
View file @
0f060e7b
...
@@ -7,7 +7,8 @@
...
@@ -7,7 +7,8 @@
* ======================================================================== */
* ======================================================================== */
+
function
(
$
)
{
'
use strict
'
;
+
function
(
$
)
{
'
use strict
'
;
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
// ============================================================
// ============================================================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment