rbrindley: branch 2.0 r4323 - /branches/2.0/config/welcome2.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Dec 9 15:40:02 CST 2008
Author: rbrindley
Date: Tue Dec 9 15:40:02 2008
New Revision: 4323
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=4323
Log:
- if extension section 'all' is clicked then other sections are set to false to 'clear' previous settings
- fixed issue where 'all' was searching for '.features.' instead of '.feature'
Modified:
branches/2.0/config/welcome2.html
Modified: branches/2.0/config/welcome2.html
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/welcome2.html?view=diff&rev=4323&r1=4322&r2=4323
==============================================================================
--- branches/2.0/config/welcome2.html (original)
+++ branches/2.0/config/welcome2.html Tue Dec 9 15:40:02 2008
@@ -455,9 +455,9 @@
$(e.target).siblings('span').each( function() {
$(this).removeClass('active');
var title = $(this).attr('title');
- extension_loads[title] = extension_loads[title]?true:false;
+ extension_loads[title] = false;
});
- $('#extensions_list').find('.sip, .iax, .analog, .features.').show();
+ $('#extensions_list').find('.sip, .iax, .analog, .feature').show();
}
var title = $(e.target).attr('title');
More information about the asterisk-gui-commits
mailing list