mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-27 17:50:44 +00:00
Fix deprecation warning since jQuery 3
JQMIGRATE: Attribute selector with '#' must be quoted: a:not([href^=#]) Change-Id: I892d27fd5e1b7e4a8b495f295d95592f164f7003
This commit is contained in:
parent
364ac4a02b
commit
74229b1d25
|
@ -86,7 +86,7 @@
|
|||
.detach()
|
||||
.html( data.parse.text );
|
||||
$content.append( '<div class="visualClear"></div>' )
|
||||
.find( 'a:not([href^=#])' )
|
||||
.find( 'a:not([href^="#"])' )
|
||||
.click( false );
|
||||
|
||||
mw.hook( 'wikipage.content' ).fire( $content );
|
||||
|
|
Loading…
Reference in a new issue