1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-07-31 19:00:23 +02:00

Don't explicitly reference global jQuery

Removes `window.jQuery` in favor of `jQuery`, fixes #10038
This commit is contained in:
Josh Dague
2013-08-22 14:50:15 -04:00
parent 0c0400633a
commit f140084f2b
12 changed files with 12 additions and 12 deletions

View File

@@ -123,4 +123,4 @@
})
})
}(window.jQuery);
}(jQuery);

View File

@@ -95,4 +95,4 @@
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
}(window.jQuery);
}(jQuery);

View File

@@ -106,4 +106,4 @@
e.preventDefault()
})
}(window.jQuery);
}(jQuery);

View File

@@ -214,4 +214,4 @@
})
})
}(window.jQuery);
}(jQuery);

View File

@@ -176,4 +176,4 @@
$target.collapse(option)
})
}(window.jQuery);
}(jQuery);

View File

@@ -151,4 +151,4 @@
.on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
}(window.jQuery);
}(jQuery);

View File

@@ -243,4 +243,4 @@
.on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
}(window.jQuery);
}(jQuery);

View File

@@ -114,4 +114,4 @@
return this
}
}(window.jQuery);
}(jQuery);

View File

@@ -155,4 +155,4 @@
})
})
}(window.jQuery);
}(jQuery);

View File

@@ -132,4 +132,4 @@
$(this).tab('show')
})
}(window.jQuery);
}(jQuery);

View File

@@ -383,4 +383,4 @@
return this
}
}(window.jQuery);
}(jQuery);

View File

@@ -53,4 +53,4 @@
$.support.transition = transitionEnd()
})
}(window.jQuery);
}(jQuery);