Changes between Version 5 and Version 6 of WikiTemplatesPlugin

Show
Ignore:
Author:
kennethxu (IP: 63.119.139.35)
Timestamp:
07/19/07 12:23:58 (9 months ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiTemplatesPlugin

    v5 v6  
    8989----- 
    9090If you got an '''Internal Error''' after installation, you could have to upgrade your trac database : '''#trac-admin /path/to/repos upgrade'''  
     91 
     92Version 0.3.0rc3 of WikiTemplates caused an JavaScript error in IE. I have a fix for that. I know this night not be the best place to put this up, but http://wikitemplates.ufsoft.org/ is down at this moment and I don't have time to wait.  
     93You need to edit the wikitemplets.js file as below: 
     94{{{ 
     95#!js 
     96function delete_mainnav_templatesbtn() { 
     97        var templatesbtn =  document.getElementById('templatesbtn'); 
     98        if(templatesbtn) { 
     99                templatesbtn.parentNode.removeChild(templatesbtn); 
     100        } 
     101} 
     102}}}