diff options
Diffstat (limited to 'src/js/media/views')
-rw-r--r-- | src/js/media/views/button.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/media/views/button.js b/src/js/media/views/button.js index ae7ff7852f..988c95ccb1 100644 --- a/src/js/media/views/button.js +++ b/src/js/media/views/button.js @@ -33,7 +33,7 @@ var Button = wp.media.View.extend(/** @lends wp.media.view.Button.prototype */{ this.model = new Backbone.Model( this.defaults ); // If any of the `options` have a key from `defaults`, apply its - // value to the `model` and remove it from the `options object. + // value to the `model` and remove it from the `options` object. _.each( this.defaults, function( def, key ) { var value = this.options[ key ]; if ( _.isUndefined( value ) ) { |