]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/media-models.js
WordPress 3.8
[autoinstalls/wordpress.git] / wp-includes / js / media-models.js
index 78489d0797d3341e7027f2f6d6ac0d48f94975c8..ab26599aa1910b8ae1f14c226fb2896962183439 100644 (file)
@@ -1,3 +1,4 @@
+/* global _wpMediaModelsL10n:false */
 window.wp = window.wp || {};
 
 (function($){
@@ -151,12 +152,12 @@ window.wp = window.wp || {};
         * ========================================================================
         */
 
-        /**
-         * wp.media.attachment
-         */
-        media.attachment = function( id ) {
+       /**
+        * wp.media.attachment
+        */
+       media.attachment = function( id ) {
                return Attachment.get( id );
-        };
+       };
 
        /**
         * wp.media.model.Attachment
@@ -233,7 +234,7 @@ window.wp = window.wp || {};
                        }
                },
 
-               parse: function( resp, xhr ) {
+               parse: function( resp ) {
                        if ( ! resp )
                                return resp;
 
@@ -296,7 +297,7 @@ window.wp = window.wp || {};
                },
 
                // Automatically sort the collection when the order changes.
-               _changeOrder: function( model, order ) {
+               _changeOrder: function() {
                        if ( this.comparator )
                                this.sort();
                },
@@ -324,7 +325,7 @@ window.wp = window.wp || {};
                        }
                },
 
-               _changeFilteredProps: function( model, options ) {
+               _changeFilteredProps: function( model ) {
                        // If this is a query, updating the collection will be handled by
                        // `this._requery()`.
                        if ( this.props.get('query') )
@@ -365,7 +366,7 @@ window.wp = window.wp || {};
                validator: function( attachment ) {
                        if ( ! this.validateDestroyed && attachment.destroyed )
                                return false;
-                       return _.all( this.filters, function( filter, key ) {
+                       return _.all( this.filters, function( filter ) {
                                return !! filter.call( this, attachment );
                        }, this );
                },