mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-11 17:01:58 +00:00
Fix return value of TitleInputWidget.looksLikeExternalLink()
This method is supposed to return a boolean. Change-Id: Id8fd80879770b6eeb5fcfce00eab4f124a8c1a56
This commit is contained in:
parent
5480b54dbf
commit
6cd0094581
|
@ -148,7 +148,7 @@ TitleInputWidget.prototype.getOverlay = function () {
|
|||
* @return {boolean}
|
||||
*/
|
||||
TitleInputWidget.prototype.looksLikeExternalLink = function ( urlString ) {
|
||||
this.constructor.static.urlRegex.test( urlString );
|
||||
return this.constructor.static.urlRegex.test( urlString );
|
||||
};
|
||||
|
||||
module.exports = TitleInputWidget;
|
||||
|
|
Loading…
Reference in a new issue