Skip to content

Commit

Permalink
Merge pull request #13800 from hnrch02/fix-umd-regression
Browse files Browse the repository at this point in the history
Fix regression of #10038 introduced by #13772
  • Loading branch information
fat committed Jun 12, 2014
2 parents 63767f8 + e9d6756 commit 51e1b01
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 51e1b01

Please sign in to comment.