[freeside-commits] branch FREESIDE_3_BRANCH updated. 146f6e84f01c17b604d392dc9c385b38c727145f
Mark Wells
mark at 420.am
Thu Oct 24 16:04:23 PDT 2013
The branch, FREESIDE_3_BRANCH has been updated
via 146f6e84f01c17b604d392dc9c385b38c727145f (commit)
from 0953ba442fbe838a6489c27ec0c348409eae3d9f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 146f6e84f01c17b604d392dc9c385b38c727145f
Author: Mark Wells <mark at freeside.biz>
Date: Thu Oct 24 16:04:03 2013 -0700
masked input clipboard hack, part 2
diff --git a/httemplate/elements/tr-input-mask.html b/httemplate/elements/tr-input-mask.html
index 8a494c8..922f22f 100644
--- a/httemplate/elements/tr-input-mask.html
+++ b/httemplate/elements/tr-input-mask.html
@@ -37,7 +37,10 @@ t.onkeydown = function(e) {
};
container.onkeyup = function(e) {
if ( container.previous ) {
- setTimeout(function() {container.previous.focus();}, 10);
+ setTimeout(function() {
+ container.previous.value = container.value;
+ container.previous.focus();
+ }, 10);
}
return true;
}
-----------------------------------------------------------------------
Summary of changes:
httemplate/elements/tr-input-mask.html | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list