This commit is contained in:
Zixaphir 2013-08-06 17:44:14 -07:00
parent bcdb6193eb
commit 275cd3503f
3 changed files with 3 additions and 3 deletions

View File

@ -11554,7 +11554,7 @@
elA = $.el('a', {
textContent: text
});
if ((action = prev.firstElementChild).nodeName === 'FORM') {
if ((action = el.firstElementChild).nodeName === 'FORM') {
elA.href = 'javascript:;';
$.on(elA, 'click', function() {
return action.firstElementChild.click();

View File

@ -11542,7 +11542,7 @@
elA = $.el('a', {
textContent: text
});
if ((action = prev.firstElementChild).nodeName === 'FORM') {
if ((action = el.firstElementChild).nodeName === 'FORM') {
elA.href = 'javascript:;';
$.on(elA, 'click', function() {
return action.firstElementChild.click();

View File

@ -39,7 +39,7 @@ Style =
elA = $.el 'a',
textContent: text
if (action = prev.firstElementChild).nodeName is 'FORM'
if (action = el.firstElementChild).nodeName is 'FORM'
elA.href = 'javascript:;'
$.on elA, 'click', ->
action.firstElementChild.click()