summaryrefslogtreecommitdiffstats
path: root/jquery-ui-timepicker-addon.js
diff options
context:
space:
mode:
authorTrent Richardson <trentdrichardson@gmail.com>2010-11-16 10:31:46 -0500
committerTrent Richardson <trentdrichardson@gmail.com>2010-11-16 10:31:46 -0500
commit3a6666bb9e32b88a48efe1d370ee23cdfff72969 (patch)
tree16cdaeb3b272cd000f56b69eada3905524442f1d /jquery-ui-timepicker-addon.js
parentddc0a6af27353e60e8c4a6d0aef194fe8657bc9d (diff)
downloadjQuery-Timepicker-Addon-3a6666bb9e32b88a48efe1d370ee23cdfff72969.zip
jQuery-Timepicker-Addon-3a6666bb9e32b88a48efe1d370ee23cdfff72969.tar.gz
jQuery-Timepicker-Addon-3a6666bb9e32b88a48efe1d370ee23cdfff72969.tar.bz2
Fixed altField option
Diffstat (limited to 'jquery-ui-timepicker-addon.js')
-rw-r--r--jquery-ui-timepicker-addon.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js
index 1092961..8e482c3 100644
--- a/jquery-ui-timepicker-addon.js
+++ b/jquery-ui-timepicker-addon.js
@@ -508,11 +508,11 @@ $.fn.extend({
tp_inst.ampm = '';
tp_inst.$input = $(input);
if (o.altField) {
- tp_inst.$altinput = $($.datepicker._get(dp_inst, 'altField'))
- .css({ cursor: 'pointer' })
- .focus(function(){
- $input.trigger("focus");
- });
+ tp_inst.$altInput = $($.datepicker._get(dp_inst, 'altField'))
+ .css({ cursor: 'pointer' })
+ .focus(function(){
+ $input.trigger("focus");
+ });
}
tp_inst.inst = dp_inst;
tp_inst._addTimePicker();