pari: trunk r207 - /trunk/config/setup/2.html
    asterisk-gui-commits at lists.digium.com 
    asterisk-gui-commits at lists.digium.com
       
    Wed Jan  3 10:21:02 MST 2007
    
    
  
Author: pari
Date: Wed Jan  3 11:21:01 2007
New Revision: 207
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=207
Log:
fix: making sure that the next button is not disabled during the date & time settings of setup wizard
Modified:
    trunk/config/setup/2.html
Modified: trunk/config/setup/2.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/setup/2.html?view=diff&rev=207&r1=206&r2=207
==============================================================================
--- trunk/config/setup/2.html (original)
+++ trunk/config/setup/2.html Wed Jan  3 11:21:01 2007
@@ -19,8 +19,10 @@
 
 
 function localinit(){
-	parent.$('next').disabled = true;
-	parent.$('next').onclick = "";
+	parent.$('next').disabled = false;
+	parent.$('next').onclick = function(){	 
+		window.location.href="3.html"; 
+	};
 	parent.$('back').disabled = false;
 	parent.$('back').onclick  = function(){	 window.location.href="1.html"; };
 	rawman_url = parent.rawman_url ;
    
    
More information about the asterisk-gui-commits
mailing list