Media modules: set `$` to `Backbone.$`, instead of `jQuery`, so fewer globals are imported.
See #28510. Built from https://develop.svn.wordpress.org/trunk@31618 git-svn-id: http://core.svn.wordpress.org/trunk@31599 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
34715e3b1a
commit
0250aebf2a
|
@ -1,4 +1,4 @@
|
|||
/*globals wp, _, Backbone, jQuery */
|
||||
/*globals wp, _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.controller.Embed
|
||||
|
@ -23,7 +23,7 @@
|
|||
*/
|
||||
var State = require( './state.js' ),
|
||||
l10n = wp.media.view.l10n,
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
Embed;
|
||||
|
||||
Embed = State.extend({
|
||||
|
|
|
@ -597,7 +597,7 @@ EditAttachments = MediaFrame.extend({
|
|||
module.exports = EditAttachments;
|
||||
|
||||
},{"../../controllers/edit-attachment-metadata.js":1,"../attachment/details-two-column.js":4,"../edit-image-details.js":8}],10:[function(require,module,exports){
|
||||
/*globals wp, _, jQuery, Backbone */
|
||||
/*globals wp, _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.view.MediaFrame.Manage
|
||||
|
@ -621,7 +621,7 @@ var MediaFrame = wp.media.view.MediaFrame,
|
|||
|
||||
Router = require( '../../routers/manage.js' ),
|
||||
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
Manage;
|
||||
|
||||
Manage = MediaFrame.extend({
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -232,7 +232,7 @@ $(window).on('unload', function(){
|
|||
});
|
||||
|
||||
},{"./models/attachment.js":2,"./models/attachments.js":3,"./models/post-image.js":4,"./models/query.js":5,"./models/selection.js":6}],2:[function(require,module,exports){
|
||||
/*globals wp, _, jQuery, Backbone */
|
||||
/*globals wp, _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.model.Attachment
|
||||
|
@ -240,7 +240,7 @@ $(window).on('unload', function(){
|
|||
* @class
|
||||
* @augments Backbone.Model
|
||||
*/
|
||||
var $ = jQuery,
|
||||
var $ = Backbone.$,
|
||||
Attachment;
|
||||
|
||||
Attachment = Backbone.Model.extend({
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
|||
/*globals wp, _, jQuery, Backbone */
|
||||
/*globals wp, _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.model.Attachment
|
||||
|
@ -6,7 +6,7 @@
|
|||
* @class
|
||||
* @augments Backbone.Model
|
||||
*/
|
||||
var $ = jQuery,
|
||||
var $ = Backbone.$,
|
||||
Attachment;
|
||||
|
||||
Attachment = Backbone.Model.extend({
|
||||
|
|
|
@ -467,7 +467,7 @@ EditImage = State.extend({
|
|||
module.exports = EditImage;
|
||||
|
||||
},{"../views/toolbar.js":63,"./state.js":15}],5:[function(require,module,exports){
|
||||
/*globals wp, _, Backbone, jQuery */
|
||||
/*globals wp, _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.controller.Embed
|
||||
|
@ -492,7 +492,7 @@ module.exports = EditImage;
|
|||
*/
|
||||
var State = require( './state.js' ),
|
||||
l10n = wp.media.view.l10n,
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
Embed;
|
||||
|
||||
Embed = State.extend({
|
||||
|
@ -4185,7 +4185,7 @@ Selection = Attachments.extend({
|
|||
module.exports = Selection;
|
||||
|
||||
},{"../attachment/selection.js":28,"../attachments.js":29}],32:[function(require,module,exports){
|
||||
/*globals _, Backbone, jQuery */
|
||||
/*globals _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.view.ButtonGroup
|
||||
|
@ -4197,7 +4197,7 @@ module.exports = Selection;
|
|||
*/
|
||||
var View = require( './view.js' ),
|
||||
Button = require( './button.js' ),
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
ButtonGroup;
|
||||
|
||||
ButtonGroup = View.extend({
|
||||
|
@ -7242,7 +7242,7 @@ Selection = View.extend({
|
|||
module.exports = Selection;
|
||||
|
||||
},{"./attachments/selection.js":31,"./view.js":71}],57:[function(require,module,exports){
|
||||
/*globals _, jQuery, Backbone */
|
||||
/*globals _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.view.Settings
|
||||
|
@ -7253,7 +7253,7 @@ module.exports = Selection;
|
|||
* @augments Backbone.View
|
||||
*/
|
||||
var View = require( './view.js' ),
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
Settings;
|
||||
|
||||
Settings = View.extend({
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
|||
/*globals _, Backbone, jQuery */
|
||||
/*globals _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.view.ButtonGroup
|
||||
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
var View = require( './view.js' ),
|
||||
Button = require( './button.js' ),
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
ButtonGroup;
|
||||
|
||||
ButtonGroup = View.extend({
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/*globals wp, _, jQuery, Backbone */
|
||||
/*globals wp, _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.view.MediaFrame.Manage
|
||||
|
@ -22,7 +22,7 @@ var MediaFrame = wp.media.view.MediaFrame,
|
|||
|
||||
Router = require( '../../routers/manage.js' ),
|
||||
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
Manage;
|
||||
|
||||
Manage = MediaFrame.extend({
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/*globals _, jQuery, Backbone */
|
||||
/*globals _, Backbone */
|
||||
|
||||
/**
|
||||
* wp.media.view.Settings
|
||||
|
@ -9,7 +9,7 @@
|
|||
* @augments Backbone.View
|
||||
*/
|
||||
var View = require( './view.js' ),
|
||||
$ = jQuery,
|
||||
$ = Backbone.$,
|
||||
Settings;
|
||||
|
||||
Settings = View.extend({
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.2-alpha-31617';
|
||||
$wp_version = '4.2-alpha-31618';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue