summaryrefslogtreecommitdiff
path: root/framework/Web/Javascripts/js/debug
diff options
context:
space:
mode:
authorwei <>2006-12-23 00:22:48 +0000
committerwei <>2006-12-23 00:22:48 +0000
commit6b685cc4e496c5eabbb3e6415fb7fdf0474bf0f1 (patch)
tree7a5859c07da28454b894a3ca003fede8880da4e4 /framework/Web/Javascripts/js/debug
parent2c221ea67d0512961beea8fbcb30b23865c16bb0 (diff)
add currency-converter tutorial
Diffstat (limited to 'framework/Web/Javascripts/js/debug')
-rw-r--r--framework/Web/Javascripts/js/debug/prado.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/Javascripts/js/debug/prado.js b/framework/Web/Javascripts/js/debug/prado.js
index 61b7f880..ca95bfbb 100644
--- a/framework/Web/Javascripts/js/debug/prado.js
+++ b/framework/Web/Javascripts/js/debug/prado.js
@@ -3013,11 +3013,11 @@ Prado.Element =
if(typeof(element) == "string")
{
if($(element))
- method.toFunction().apply(this,[element,content]);
+ method.toFunction().apply(this,[element,""+content]);
}
else
{
- method.toFunction().apply(this,[content]);
+ method.toFunction().apply(this,[""+content]);
}
},