Popups: Fix popups for extiw links

These links were not ignored due to a typo. This also threw an error,
because these links produced query.interwiki and not in query.pages.

Change-Id: I3b5c5b900209323e3e72b41e3b02e90f1f53b4eb
This commit is contained in:
Derk-Jan Hartman 2014-05-20 00:30:29 +02:00
parent b656841f8f
commit cc4d67c67c
2 changed files with 2 additions and 1 deletions

View file

@ -29,7 +29,7 @@
* @property {Array} IGNORE_CLASSES
*/
mw.popups.IGNORE_CLASSES = [
'.exitw',
'.extiw',
'.image',
'.new',
'.internal'

View file

@ -56,6 +56,7 @@
mw.popups.render.currentRequest = undefined;
if (
!re.query.pages ||
!re.query.pages[ re.query.pageids[ 0 ] ].extract ||
re.query.pages[ re.query.pageids[ 0 ] ].extract === ''
) {