Make WordPress Core

Ticket #27996: All-bind-s-changed-to-on.patch

File All-bind-s-changed-to-on.patch, 2.0 KB (added by johnstonphilip, 9 years ago)

All "bind"s changed to "on"s.

  • wp-admin/js/postbox.js

    From 2ecb5991e69c288633fdac86b4b0503e67a52432 Mon Sep 17 00:00:00 2001
    From: Phil Johnston <support@mintplugins.com>
    Date: Thu, 18 Jun 2015 21:06:57 -0400
    Subject: [PATCH] All "bind"s changed to "on"
    
    ---
     wp-admin/js/postbox.js | 10 +++++-----
     1 file changed, 5 insertions(+), 5 deletions(-)
    
    diff --git a/wp-admin/js/postbox.js b/wp-admin/js/postbox.js
    index 560147b..19604bc 100644
    a b var postboxes; 
    1111
    1212                        self.init(page, args);
    1313
    14                         $( document ).on( '.postbox .hndle, .postbox .handlediv', 'click.postboxes', function() {
     14                        $( document ).on( 'click.postboxes', '.postbox .hndle, .postbox .handlediv', function() {
    1515                                var p = $(this).parent('.postbox'), id = p.attr('id');
    1616
    1717                                if ( 'dashboard_browser_nag' == id )
    var postboxes; 
    3636                                e.stopPropagation();
    3737                        });
    3838
    39                         $( '.postbox a.dismiss' ).bind( 'click.postboxes', function() {
     39                        $( document ).on( 'click.postboxes', '.postbox a.dismiss', function() {
    4040                                var hide_id = $(this).parents('.postbox').attr('id') + '-hide';
    4141                                $( '#' + hide_id ).prop('checked', false).triggerHandler('click');
    4242                                return false;
    4343                        });
    4444
    45                         $('.hide-postbox-tog').bind('click.postboxes', function() {
     45                        $( document ).on('click.postboxes', '.hide-postbox-tog', function() {
    4646                                var boxId = $(this).val(),
    4747                                        $postbox = $( '#' + boxId );
    4848
    var postboxes; 
    6060                                $document.trigger( 'postbox-toggled', $postbox );
    6161                        });
    6262
    63                         $('.columns-prefs input[type="radio"]').bind('click.postboxes', function(){
     63                        $( document ).on('click.postboxes', '.columns-prefs input[type="radio"]', function(){
    6464                                var n = parseInt($(this).val(), 10);
    6565
    6666                                if ( n ) {
    var postboxes; 
    104104                        });
    105105
    106106                        if ( isMobile ) {
    107                                 $(document.body).bind('orientationchange.postboxes', function(){ postboxes._pb_change(); });
     107                                $(document.body).on( 'ready', 'orientationchange.postboxes', function(){ postboxes._pb_change(); });
    108108                                this._pb_change();
    109109                        }
    110110