summaryrefslogtreecommitdiff
path: root/framework/Web/Javascripts
diff options
context:
space:
mode:
authorxue <>2007-08-27 21:23:33 +0000
committerxue <>2007-08-27 21:23:33 +0000
commit5e3caed030722be404c1b56f2af1e149799b5eda (patch)
treec6384e61ad15803d2f5e20cf0d356d2788dc56cb /framework/Web/Javascripts
parentd168b3508064ccfb7f1ebf635c0ba71734750ced (diff)
Added tutorial for TKeyboard.
Diffstat (limited to 'framework/Web/Javascripts')
-rw-r--r--framework/Web/Javascripts/source/prado/controls/controls.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/framework/Web/Javascripts/source/prado/controls/controls.js b/framework/Web/Javascripts/source/prado/controls/controls.js
index 8975a7a2..c4dcf562 100644
--- a/framework/Web/Javascripts/source/prado/controls/controls.js
+++ b/framework/Web/Javascripts/source/prado/controls/controls.js
@@ -457,7 +457,6 @@ Prado.WebUI.TKeyboard.prototype =
type : function(key)
{
-
var input = this.forControl;
var command = key.toLowerCase();
@@ -474,7 +473,6 @@ Prado.WebUI.TKeyboard.prototype =
}
if (command != 'exit') input.focus();
-
},
saveSelection : function()
@@ -493,7 +491,6 @@ Prado.WebUI.TKeyboard.prototype =
if (value == 'bksp') {this.selection.moveStart("character", -1); this.selection.text = '';}
else if (value == 'del') {this.selection.moveEnd("character", 1); this.selection.text = '';}
else {this.selection.text = value;}
-
this.selection.select();
}
else