mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-09-16 22:10:22 +00:00
Fix JSHint errors in 5 files.
props seanchayes. fixes #26015, #26020, #26019, #26034, #26022. git-svn-id: https://develop.svn.wordpress.org/trunk@26200 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -90,10 +90,10 @@
|
||||
preview.send( 'synced' );
|
||||
});
|
||||
|
||||
preview.bind( 'active', function() {
|
||||
if ( api.settings.nonce )
|
||||
preview.send( 'nonce', api.settings.nonce );
|
||||
});
|
||||
preview.bind( 'active', function() {
|
||||
if ( api.settings.nonce )
|
||||
preview.send( 'nonce', api.settings.nonce );
|
||||
});
|
||||
|
||||
preview.send( 'ready' );
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
p = p.parent();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
return this.filter(is_visible);
|
||||
};
|
||||
$.table_hotkeys = function(table, keys, opts) {
|
||||
@@ -16,7 +16,7 @@
|
||||
var selected_class, destructive_class, set_current_row, adjacent_row_callback, get_adjacent_row, adjacent_row, prev_row, next_row, check, get_first_row, get_last_row, make_key_callback, first_row;
|
||||
|
||||
selected_class = opts.class_prefix + opts.selected_suffix;
|
||||
destructive_class = opts.class_prefix + opts.destructive_suffix
|
||||
destructive_class = opts.class_prefix + opts.destructive_suffix;
|
||||
set_current_row = function (tr) {
|
||||
if ($.table_hotkeys.current_row) $.table_hotkeys.current_row.removeClass(selected_class);
|
||||
tr.addClass(selected_class);
|
||||
@@ -66,7 +66,7 @@
|
||||
if (!clickable.length) return false;
|
||||
if (clickable.is('.'+destructive_class)) next_row() || prev_row();
|
||||
clickable.click();
|
||||
}
|
||||
};
|
||||
};
|
||||
first_row = get_first_row();
|
||||
if (!first_row.length) return;
|
||||
@@ -74,8 +74,8 @@
|
||||
set_current_row(first_row);
|
||||
else if (opts.highlight_last)
|
||||
set_current_row(get_last_row());
|
||||
$.hotkeys.add(opts.prev_key, opts.hotkeys_opts, function() {return adjacent_row_callback('prev')});
|
||||
$.hotkeys.add(opts.next_key, opts.hotkeys_opts, function() {return adjacent_row_callback('next')});
|
||||
$.hotkeys.add(opts.prev_key, opts.hotkeys_opts, function() {return adjacent_row_callback('prev');});
|
||||
$.hotkeys.add(opts.next_key, opts.hotkeys_opts, function() {return adjacent_row_callback('next');});
|
||||
$.hotkeys.add(opts.mark_key, opts.hotkeys_opts, check);
|
||||
$.each(keys, function() {
|
||||
var callback, key;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
/* global getUserSetting, tinymce, QTags, wpActiveEditor */
|
||||
|
||||
// WordPress, TinyMCE, and Media
|
||||
// -----------------------------
|
||||
(function($){
|
||||
@@ -524,7 +526,7 @@
|
||||
var display = state.display( attachment ).toJSON();
|
||||
return this.send.attachment( display, attachment.toJSON() );
|
||||
}, this ) ).done( function() {
|
||||
wp.media.editor.insert( _.toArray( arguments ).join("\n\n") );
|
||||
wp.media.editor.insert( _.toArray( arguments ).join('\n\n') );
|
||||
});
|
||||
}, this );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user