Make WordPress Core

Ticket #26015: 26015.patch

File 26015.patch, 1.9 KB (added by seanchayes, 11 years ago)
  • src/wp-includes/js/jquery/jquery.table-hotkeys.js

     
    88                                p = p.parent();
    99                        }
    1010                        return true;
    11                 }
     11                };
    1212                return this.filter(is_visible);
    1313        };
    1414        $.table_hotkeys = function(table, keys, opts) {
     
    1616                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;
    1717               
    1818                selected_class = opts.class_prefix + opts.selected_suffix;
    19                 destructive_class = opts.class_prefix + opts.destructive_suffix
     19                destructive_class = opts.class_prefix + opts.destructive_suffix;
    2020                set_current_row = function (tr) {
    2121                        if ($.table_hotkeys.current_row) $.table_hotkeys.current_row.removeClass(selected_class);
    2222                        tr.addClass(selected_class);
     
    6666                                if (!clickable.length) return false;
    6767                                if (clickable.is('.'+destructive_class)) next_row() || prev_row();
    6868                                clickable.click();
    69                         }
     69                        };
    7070                };
    7171                first_row = get_first_row();
    7272                if (!first_row.length) return;
     
    7474                        set_current_row(first_row);
    7575                else if (opts.highlight_last)
    7676                        set_current_row(get_last_row());
    77                 $.hotkeys.add(opts.prev_key, opts.hotkeys_opts, function() {return adjacent_row_callback('prev')});
    78                 $.hotkeys.add(opts.next_key, opts.hotkeys_opts, function() {return adjacent_row_callback('next')});
     77                $.hotkeys.add(opts.prev_key, opts.hotkeys_opts, function() {return adjacent_row_callback('prev');});
     78                $.hotkeys.add(opts.next_key, opts.hotkeys_opts, function() {return adjacent_row_callback('next');});
    7979                $.hotkeys.add(opts.mark_key, opts.hotkeys_opts, check);
    8080                $.each(keys, function() {
    8181                        var callback, key;