Changeset 31618
- Timestamp:
- 03/05/2015 04:11:23 AM (10 years ago)
- Location:
- trunk/src/wp-includes/js/media
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/media/controllers/embed.js
r31491 r31618 1 /*globals wp, _, Backbone , jQuery*/1 /*globals wp, _, Backbone */ 2 2 3 3 /** … … 24 24 var State = require( './state.js' ), 25 25 l10n = wp.media.view.l10n, 26 $ = jQuery,26 $ = Backbone.$, 27 27 Embed; 28 28 -
trunk/src/wp-includes/js/media/grid.js
r31568 r31618 598 598 599 599 },{"../../controllers/edit-attachment-metadata.js":1,"../attachment/details-two-column.js":4,"../edit-image-details.js":8}],10:[function(require,module,exports){ 600 /*globals wp, _, jQuery,Backbone */600 /*globals wp, _, Backbone */ 601 601 602 602 /** … … 622 622 Router = require( '../../routers/manage.js' ), 623 623 624 $ = jQuery,624 $ = Backbone.$, 625 625 Manage; 626 626 -
trunk/src/wp-includes/js/media/models.js
r31491 r31618 233 233 234 234 },{"./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){ 235 /*globals wp, _, jQuery,Backbone */235 /*globals wp, _, Backbone */ 236 236 237 237 /** … … 241 241 * @augments Backbone.Model 242 242 */ 243 var $ = jQuery,243 var $ = Backbone.$, 244 244 Attachment; 245 245 -
trunk/src/wp-includes/js/media/models/attachment.js
r31491 r31618 1 /*globals wp, _, jQuery,Backbone */1 /*globals wp, _, Backbone */ 2 2 3 3 /** … … 7 7 * @augments Backbone.Model 8 8 */ 9 var $ = jQuery,9 var $ = Backbone.$, 10 10 Attachment; 11 11 -
trunk/src/wp-includes/js/media/views.js
r31494 r31618 468 468 469 469 },{"../views/toolbar.js":63,"./state.js":15}],5:[function(require,module,exports){ 470 /*globals wp, _, Backbone , jQuery*/470 /*globals wp, _, Backbone */ 471 471 472 472 /** … … 493 493 var State = require( './state.js' ), 494 494 l10n = wp.media.view.l10n, 495 $ = jQuery,495 $ = Backbone.$, 496 496 Embed; 497 497 … … 4186 4186 4187 4187 },{"../attachment/selection.js":28,"../attachments.js":29}],32:[function(require,module,exports){ 4188 /*globals _, Backbone , jQuery*/4188 /*globals _, Backbone */ 4189 4189 4190 4190 /** … … 4198 4198 var View = require( './view.js' ), 4199 4199 Button = require( './button.js' ), 4200 $ = jQuery,4200 $ = Backbone.$, 4201 4201 ButtonGroup; 4202 4202 … … 7243 7243 7244 7244 },{"./attachments/selection.js":31,"./view.js":71}],57:[function(require,module,exports){ 7245 /*globals _, jQuery,Backbone */7245 /*globals _, Backbone */ 7246 7246 7247 7247 /** … … 7254 7254 */ 7255 7255 var View = require( './view.js' ), 7256 $ = jQuery,7256 $ = Backbone.$, 7257 7257 Settings; 7258 7258 -
trunk/src/wp-includes/js/media/views/button-group.js
r31492 r31618 1 /*globals _, Backbone , jQuery*/1 /*globals _, Backbone */ 2 2 3 3 /** … … 11 11 var View = require( './view.js' ), 12 12 Button = require( './button.js' ), 13 $ = jQuery,13 $ = Backbone.$, 14 14 ButtonGroup; 15 15 -
trunk/src/wp-includes/js/media/views/frame/manage.js
r31568 r31618 1 /*globals wp, _, jQuery,Backbone */1 /*globals wp, _, Backbone */ 2 2 3 3 /** … … 23 23 Router = require( '../../routers/manage.js' ), 24 24 25 $ = jQuery,25 $ = Backbone.$, 26 26 Manage; 27 27 -
trunk/src/wp-includes/js/media/views/settings.js
r31491 r31618 1 /*globals _, jQuery,Backbone */1 /*globals _, Backbone */ 2 2 3 3 /** … … 10 10 */ 11 11 var View = require( './view.js' ), 12 $ = jQuery,12 $ = Backbone.$, 13 13 Settings; 14 14
Note: See TracChangeset
for help on using the changeset viewer.