diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-23 14:52:22 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-23 14:52:22 +0100 |
commit | 5909ef5a99fd98dbc1b25fcb4640c03fdef4cb53 (patch) | |
tree | a709088dc31fe9bdb3c6ac55d8b25a27f05e438c /framework | |
parent | a6fe1553fa7870facf5cff524fd99cf81518d1e4 (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 25550bca..96f439b3 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) { |