fixed not working multiple account trigger after changing html::submit_button() from <input type="submit" to <button

This commit is contained in:
Ralf Becker 2014-02-11 16:42:02 +00:00
parent ae3a6bfe0c
commit ea9e2569bc

View File

@ -821,7 +821,7 @@ function addOption(id,label,value,do_onchange)
* Install click handlers for popup and multiple triggers of uiaccountselection * Install click handlers for popup and multiple triggers of uiaccountselection
*/ */
$j(function(){ $j(function(){
$j(document).on('click', 'input.uiaccountselection_trigger',function(){ $j(document).on('click', '.uiaccountselection_trigger',function(){
var selectBox = document.getElementById(this.id.replace(/(_multiple|_popup)$/, '')); var selectBox = document.getElementById(this.id.replace(/(_multiple|_popup)$/, ''));
if (selectBox) if (selectBox)
{ {