diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-23 14:52:22 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-26 11:42:52 +0100 |
commit | c9b49d7de3542ad031b4fe52de93fbaa12c158fd (patch) | |
tree | a54b0db74360e046b6d7121617640db6a00968b4 /framework | |
parent | 808badb68dd02b0fb3977fdcb4f069735e442e50 (diff) |
Fixed dynamic creation of js events
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Web/Javascripts/source/prado/prado.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/Javascripts/source/prado/prado.js b/framework/Web/Javascripts/source/prado/prado.js index 13e8be92..ff147580 100644 --- a/framework/Web/Javascripts/source/prado/prado.js +++ b/framework/Web/Javascripts/source/prado/prado.js @@ -388,7 +388,7 @@ Prado.Element = try { eval("(func = function(event){"+value+"})"); - el[attribute] = func; + el.get(0)[attribute] = func; } catch(e) { |