Page MenuHomePhabricator
Paste P330

g192465
ActivePublic

Authored by Se4598 on Feb 24 2015, 4:31 PM.
Tags
None
Referenced Files
F46269: g192465
Feb 24 2015, 4:31 PM
Subscribers
None
mw.popups.selectPopupElements = function () {
return mw.popups.$content
.find( 'a[href][title]:not(' + mw.popups.IGNORE_CLASSES.join(', ') + ')' )
.filter( function () {
return ( this.href.replace(/^https?:\/\//,'//') === ( mw.config.get( 'wgServer' ) + mw.util.getUrl( this.title ) ).replace(/^https?:\/\//,'//') );
} );
};
mw.hook( 'wikipage.content').add( function ( $content ) {
if ( mw.popups.enabled ) {
mw.popups.$content = $content;
var $elements = mw.popups.selectPopupElements();
mw.popups.removeTooltips( $elements );
mw.popups.setupTriggers( $elements );
}
} );

Event Timeline

Se4598 changed the title of this paste from untitled to g192465.
Se4598 updated the paste's language from autodetect to autodetect.