User:David Wahler/monobook.js

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
Template:Script doc autoNote: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the Template:Key press key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
 var daw_isPDA = true;
 if (navigator && navigator.userAgent && navigator.userAgent.search) {
     daw_isPDA = navigator.userAgent.search(/Windows CE/) > -1;
 }
 
 if (!daw_isPDA) {
 
     // [[User:Lupin/popups.js]]
     
     document.write('<script type="text/javascript" src="' 
                  + 'http://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js' 
                  + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
     
     popupDelay=1.5;
     popupShortcutKeys=true;
     popupFixRedits=true;
     popupFixDabs=true;
     popupRevertSummaryPrompt=true;
 
 }

 function externISBN() {
   for (var i = 0; i < document.links.length; i++) 
     {       
         if( document.links[i].href.match(/isbn=(.*)/) ) {
           document.links[i].href='http://catalog.lib.utexas.edu/search/i?SEARCH='+RegExp.$1;
         }
     } 
 }

addOnloadHook(externISBN);