Merge "RCFilters: Remove excluded params from URL"
[lhc/web/wiklou.git] / includes / specials / SpecialJavaScriptTest.php
index 52064b7..b786c86 100644 (file)
@@ -143,7 +143,11 @@ class SpecialJavaScriptTest extends SpecialPage {
                        .always( function () {
                                start();
                        } )
-                       .fail( function ( e ) { throw e; } );
+                       .fail( function ( e ) {
+                               setTimeout( function () {
+                                       throw e;
+                               } );
+                       } );
        } catch ( e ) {
                start();
                throw e;
@@ -195,15 +199,6 @@ HTML;
                echo $html;
        }
 
-       /**
-        * Return an array of subpages that this special page will accept.
-        *
-        * @return string[] subpages
-        */
-       public function getSubpagesForPrefixSearch() {
-               return self::$frameworks;
-       }
-
        protected function getGroupName() {
                return 'other';
        }