Merge "Remove meaningless default action name"
[lhc/web/wiklou.git] / resources / src / mediawiki.toolbar / toolbar.js
index 57f780c..70d54ce 100644 (file)
                                        }
                                );
                        }
-               },
-
-               // For backwards compatibility,
-               // Called from EditPage.php, maybe in other places as well.
-               init: function () {}
+               }
        };
 
        // Legacy (for compatibility with the code previously in skins/common.edit.js)
        mw.log.deprecate( window, 'addButton', toolbar.addButton, 'Use mw.toolbar.addButton instead.' );
        mw.log.deprecate( window, 'insertTags', toolbar.insertTags, 'Use mw.toolbar.insertTags instead.' );
 
+       // For backwards compatibility. Used to be called from EditPage.php, maybe other places as well.
+       mw.log.deprecate( toolbar, 'init', $.noop );
+
        // Expose API publicly
        mw.toolbar = toolbar;
 
                // This causes further calls to addButton to go to insertion directly
                // instead of to the queue.
                // It is important that this is after the one and only loop through
-               // the the queue
+               // the queue
                isReady = true;
 
                // Apply to dynamically created textboxes as well as normal ones