bkruse: trunk r3329 - /trunk/config/
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Jun 24 17:05:28 CDT 2008
Author: bkruse
Date: Tue Jun 24 17:05:27 2008
New Revision: 3329
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=3329
Log:
Fix firefox 3 bug that made the GUI unusable.
(closes issue #12533)
Modified:
trunk/config/meetme.html
trunk/config/trunks.html
trunk/config/users.html
trunk/config/voicemail.html
Modified: trunk/config/meetme.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/meetme.html?view=diff&rev=3329&r1=3328&r2=3329
==============================================================================
--- trunk/config/meetme.html (original)
+++ trunk/config/meetme.html Tue Jun 24 17:05:27 2008
@@ -108,8 +108,7 @@
}
}
}
- _ext.contentEditable = 'true';
- _ext.disabled = 0;
+ _ext.disabled = false;
_ext.style.height = "415px";
parent.loadscreen(this);
}
@@ -341,7 +340,7 @@
ASTGUI.events.add(document, 'mouseover', show_tooltip);
setWindowTitle("Conferencing");
- _$('extensions').contentEditable = 'false';
+ _$('extensions').disabled = true;
for (var x =0; x < fieldnames.length; x++) {
widgets[fieldnames[x]] = _$(fieldnames[x]);
widgets[fieldnames[x]].disabled = true;
Modified: trunk/config/trunks.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/trunks.html?view=diff&rev=3329&r1=3328&r2=3329
==============================================================================
--- trunk/config/trunks.html (original)
+++ trunk/config/trunks.html Tue Jun 24 17:05:27 2008
@@ -173,8 +173,7 @@
callbacks.loaded = function() {
var _devices = _$('devices');
- _devices.contentEditable = 'true';
- _devices.disabled = 0;
+ _devices.disabled = true;
ASTGUI.events.add( _$('new') , "click", showSPdetails ) ;
loadServiceProvidersintotable();
preparemenus();
@@ -673,7 +672,7 @@
ASTGUI.events.add(_$('provider'), 'click', showhidefields);
setWindowTitle("Service Providers");
- _$('devices').contentEditable = 'false';
+ _$('devices').disabled = true;
_$('zapchan').splitchar=',';
var _trunkstyleanalog = _$('trunkstyleanalog') ;
_trunkstyleanalog.onclick = null;
Modified: trunk/config/users.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/users.html?view=diff&rev=3329&r1=3328&r2=3329
==============================================================================
--- trunk/config/users.html (original)
+++ trunk/config/users.html Tue Jun 24 17:05:27 2008
@@ -109,8 +109,7 @@
}
}
callbacks.loaded = function() {
- _$('devices').contentEditable = 'true';
- _$('devices').disabled = 0;
+ _$('devices').disabled = false;
if( _$('zapchan').options.length == 0) {
_$('zapchan').style.display="none";
@@ -298,7 +297,7 @@
*/
setWindowTitle("User Extensions");
- _$('devices').contentEditable = 'false';
+ _$('devices').disabled = true;
for (var x =0; x < fieldnames.length; x++ ) {
widgets[fieldnames[x]] = _$(fieldnames[x]);
widgets[fieldnames[x]].disabled = true;
Modified: trunk/config/voicemail.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/voicemail.html?view=diff&rev=3329&r1=3328&r2=3329
==============================================================================
--- trunk/config/voicemail.html (original)
+++ trunk/config/voicemail.html Tue Jun 24 17:05:27 2008
@@ -86,8 +86,7 @@
}
}
}
- $('extensions').contentEditable = 'true';
- $('extensions').disabled = 0;
+ $('extensions').disabled = false;
$('extensions').current_category = specialcontext;
ASTGUI.events.add( $('name') , 'keydown', function(){ this.oldvalue = this.value ;} );
@@ -268,7 +267,7 @@
setWindowTitle("Voicemail");
//$('advancedi').style.width = $('split').width - 60;
- $('extensions').contentEditable = 'false';
+ $('extensions').disabled = true;
/*
if( navigator.userAgent.indexOf("MSIE") != -1){
More information about the asterisk-gui-commits
mailing list