Skip to content

Commit

Permalink
Fix regression of #10038 introduced by #13772
Browse files Browse the repository at this point in the history
  • Loading branch information
hnrch02 committed Jun 12, 2014
1 parent 63767f8 commit e9d6756
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion js/affix.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/alert.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/button.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/collapse.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/scrollspy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down
2 changes: 1 addition & 1 deletion js/transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function (o_o) {
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
typeof exports === 'object' ? o_o(require('jquery')) : o_o(jQuery)
})(function ($) {

'use strict';
Expand Down

0 comments on commit e9d6756

Please sign in to comment.