pari: trunk r215 - /trunk/config/menus.html

asterisk-gui-commits at lists.digium.com asterisk-gui-commits at lists.digium.com
Thu Jan 4 13:50:45 MST 2007


Author: pari
Date: Thu Jan  4 14:50:45 2007
New Revision: 215

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=215
Log:
 *FIX* : The Steps in the voicemenus were not being sorted correctly

Modified:
    trunk/config/menus.html

Modified: trunk/config/menus.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/menus.html?view=diff&rev=215&r1=214&r2=215
==============================================================================
--- trunk/config/menus.html (original)
+++ trunk/config/menus.html Thu Jan  4 14:50:45 2007
@@ -704,7 +704,6 @@
 			var newoption = document.createElement("option");
 			newoption.text = format_step(voicemenusdata[current_context].extensions['s'][x]);
 			newoption.value = voicemenusdata[current_context].extensions['s'][x];
-			console.log("FOR '" + newoption.value +"' current_context is '" + current_context + "' and x is '" + x+"'" );
 			$('steps').options.add ( newoption );
 		}
 	}
@@ -716,7 +715,6 @@
 					priority_1 = tmp[1];
 					tmp = $('steps').options[y-1].value.split(",") ;
 					priority_2 = tmp[1];
-					console.log("checking whether " + priority_2 +" is > " + priority_1);
 					  if (priority_2 - priority_1 > 0){
 							buffer = $('steps').options[y-1].value;
 							$('steps').options[y-1].value = $('steps').options[y].value;



More information about the asterisk-gui-commits mailing list