(e,p)
| 3523 | if (type == STRING || type == TEXT) { |
| 3524 | var s = "<input type='text' id='"+v+"' value='"+(o.value||"").replace(/'/g,"'")+"' />"; |
| 3525 | var f = function(e,p) { canvas.variables[this.id] = this.value; cb(e,p); }; |
| 3526 | // <input type="text" id="id" value="0" /> |
| 3527 | } else if (type == NUMBER) { |
| 3528 | var s = "<input type='text' id='"+v+"' value='"+(o.value||0)+"' />"; |