mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-06 04:08:22 +01:00
return matcher value directly + cleanup first lines of files
This commit is contained in:
parent
6dc59a9c3e
commit
f02d017ffa
Binary file not shown.
2
docs/assets/js/bootstrap-alert.js
vendored
2
docs/assets/js/bootstrap-alert.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
docs/assets/js/bootstrap-button.js
vendored
3
docs/assets/js/bootstrap-button.js
vendored
@ -17,7 +17,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
!function( $ ){
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
docs/assets/js/bootstrap-carousel.js
vendored
2
docs/assets/js/bootstrap-carousel.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
docs/assets/js/bootstrap-collapse.js
vendored
3
docs/assets/js/bootstrap-collapse.js
vendored
@ -17,7 +17,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
!function( $ ){
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
docs/assets/js/bootstrap-dropdown.js
vendored
2
docs/assets/js/bootstrap-dropdown.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
docs/assets/js/bootstrap-modal.js
vendored
2
docs/assets/js/bootstrap-modal.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ========================================================= */
|
* ========================================================= */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
docs/assets/js/bootstrap-popover.js
vendored
2
docs/assets/js/bootstrap-popover.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* =========================================================== */
|
* =========================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ) {
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
1
docs/assets/js/bootstrap-scrollspy.js
vendored
1
docs/assets/js/bootstrap-scrollspy.js
vendored
@ -17,6 +17,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================== */
|
* ============================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function ( $ ) {
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
2
docs/assets/js/bootstrap-tab.js
vendored
2
docs/assets/js/bootstrap-tab.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ======================================================== */
|
* ======================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
docs/assets/js/bootstrap-tooltip.js
vendored
3
docs/assets/js/bootstrap-tooltip.js
vendored
@ -18,7 +18,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
!function( $ ) {
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
docs/assets/js/bootstrap-transition.js
vendored
3
docs/assets/js/bootstrap-transition.js
vendored
@ -17,7 +17,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
!function( $ ) {
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
|
|
||||||
|
3
docs/assets/js/bootstrap-typeahead.js
vendored
3
docs/assets/js/bootstrap-typeahead.js
vendored
@ -17,6 +17,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function( $ ){
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
@ -78,7 +79,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
items = $.grep(this.source, function (item) {
|
items = $.grep(this.source, function (item) {
|
||||||
if (that.matcher(item)) return item
|
return that.matcher(item)
|
||||||
})
|
})
|
||||||
|
|
||||||
items = this.sorter(items)
|
items = this.sorter(items)
|
||||||
|
2
js/bootstrap-alert.js
vendored
2
js/bootstrap-alert.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
js/bootstrap-button.js
vendored
3
js/bootstrap-button.js
vendored
@ -17,7 +17,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
!function( $ ){
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
js/bootstrap-carousel.js
vendored
2
js/bootstrap-carousel.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
js/bootstrap-collapse.js
vendored
3
js/bootstrap-collapse.js
vendored
@ -17,7 +17,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
!function( $ ){
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
js/bootstrap-dropdown.js
vendored
2
js/bootstrap-dropdown.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
js/bootstrap-modal.js
vendored
2
js/bootstrap-modal.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ========================================================= */
|
* ========================================================= */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
2
js/bootstrap-popover.js
vendored
2
js/bootstrap-popover.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* =========================================================== */
|
* =========================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ) {
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
1
js/bootstrap-scrollspy.js
vendored
1
js/bootstrap-scrollspy.js
vendored
@ -17,6 +17,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================== */
|
* ============================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function ( $ ) {
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
2
js/bootstrap-tab.js
vendored
2
js/bootstrap-tab.js
vendored
@ -18,7 +18,7 @@
|
|||||||
* ======================================================== */
|
* ======================================================== */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
js/bootstrap-tooltip.js
vendored
3
js/bootstrap-tooltip.js
vendored
@ -18,7 +18,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
!function( $ ) {
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
|
3
js/bootstrap-transition.js
vendored
3
js/bootstrap-transition.js
vendored
@ -17,7 +17,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ========================================================== */
|
* ========================================================== */
|
||||||
|
|
||||||
!function( $ ) {
|
|
||||||
|
!function ( $ ) {
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
|
|
||||||
|
3
js/bootstrap-typeahead.js
vendored
3
js/bootstrap-typeahead.js
vendored
@ -17,6 +17,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
* ============================================================ */
|
* ============================================================ */
|
||||||
|
|
||||||
|
|
||||||
!function( $ ){
|
!function( $ ){
|
||||||
|
|
||||||
"use strict"
|
"use strict"
|
||||||
@ -78,7 +79,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
items = $.grep(this.source, function (item) {
|
items = $.grep(this.source, function (item) {
|
||||||
if (that.matcher(item)) return item
|
return that.matcher(item)
|
||||||
})
|
})
|
||||||
|
|
||||||
items = this.sorter(items)
|
items = this.sorter(items)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user