bkruse: branch asterisknow r1467 - in /branches/asterisknow: ./ config/

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Aug 28 16:00:20 CDT 2007


Author: bkruse
Date: Tue Aug 28 16:00:19 2007
New Revision: 1467

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1467
Log:
Merged revisions 1465 via svnmerge from 
https://origsvn.digium.com/svn/asterisk-gui/branches/1.4

........
r1465 | bkruse | 2007-08-28 15:58:03 -0500 (Tue, 28 Aug 2007) | 6 lines

Changes that Siya mentioned. Now the gui will also
disable the digitaltrunk box when your are editing
a trunk, and its not a new trunk.
Also makes sure that the onclick event does not
get fired out when its disabled.
(closes issue #10149)

........

Modified:
    branches/asterisknow/   (props changed)
    branches/asterisknow/config/trunks.html

Propchange: branches/asterisknow/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Tue Aug 28 16:00:19 2007
@@ -1,1 +1,1 @@
-/branches/1.4:1-1296,1316,1326,1332,1336-1338,1342,1346,1356,1362,1381,1384,1395,1399,1402,1413,1416,1426,1432,1435,1439,1442,1455
+/branches/1.4:1-1296,1316,1326,1332,1336-1338,1342,1346,1356,1362,1381,1384,1395,1399,1402,1413,1416,1426,1432,1435,1439,1442,1455,1465

Modified: branches/asterisknow/config/trunks.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/trunks.html?view=diff&rev=1467&r1=1466&r2=1467
==============================================================================
--- branches/asterisknow/config/trunks.html (original)
+++ branches/asterisknow/config/trunks.html Tue Aug 28 16:00:19 2007
@@ -641,6 +641,9 @@
 
 	var _trunkstylecustomvoip = _$('trunkstylecustomvoip');
 	_trunkstylecustomvoip.onclick = null;
+	
+	var _trunkstyledigital = _$('trunkstyledigital');
+	_trunkstyledigital.onclick = null;
 
 	ASTGUI.events.add( _$('custom_trunkname') , 'change' , function(){ 
 		_$('name').value = _$('custom_trunkname').value;
@@ -1085,6 +1088,7 @@
 		_$('trunkstyleanalog').disabled = true;
 		_$('trunkstylevoip').disabled = true;
 		_$('trunkstylecustomvoip').disabled = true;
+		_$('trunkstyledigital').disabled = true;
 		_$('provider').disabled = true;
 	} else {
 		_$('voip').style.display = "";




More information about the asterisk-gui-commits mailing list