Skip to content

Commit 4be2121

Browse files
author
Keith Wood
committed
Release 1.4.7
1 parent 6aa189d commit 4be2121

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

jquery.timeentry.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* http://keith-wood.name/timeEntry.html
2-
Time entry for jQuery v1.4.6.
2+
Time entry for jQuery v1.4.7.
33
Written by Keith Wood (kbwood{at}iinet.com.au) June 2007.
44
Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and
55
MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses.
@@ -112,11 +112,11 @@ $.extend(TimeEntry.prototype, {
112112
bind('keydown.timeEntry', this._doKeyDown).bind('keypress.timeEntry', this._doKeyPress);
113113
// Check pastes
114114
if ($.browser.mozilla) {
115-
input.bind('input.timeEntry', function(event) { $.timeentry._parseTime(inst); });
115+
input.bind('input.timeEntry', function(event) { $.timeEntry._parseTime(inst); });
116116
}
117117
if ($.browser.msie) {
118118
input.bind('paste.timeEntry',
119-
function(event) { setTimeout(function() { $.timeentry._parseTime(inst); }, 1); });
119+
function(event) { setTimeout(function() { $.timeEntry._parseTime(inst); }, 1); });
120120
}
121121
// Allow mouse wheel usage
122122
if (this._get(inst, 'useMouseWheel') && $.fn.mousewheel) {

0 commit comments

Comments
 (0)