bootstrap-timepicker-rails 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  Gemfile.lock
2
2
  *.gem
3
3
  bootstrap-timepicker-src
4
+ *.swp
data/README.md CHANGED
@@ -3,8 +3,6 @@ This is the gemified version of https://github.com/jdewit/bootstrap-timepicker
3
3
 
4
4
  bootstrap-timepicker-rails project integrates Timepicker with Rails 3 assets pipeline.
5
5
 
6
- https://github.com/jdewit/bootstrap-timepicker
7
-
8
6
  ## Rails > 3.1
9
7
  Include bootstrap-timepicker-rails in Gemfile;
10
8
 
@@ -41,4 +39,21 @@ Just call timepicker() with any selector.
41
39
 
42
40
  ```javascript
43
41
  $('.timepicker').timepicker()
44
- ```
42
+ ```
43
+
44
+ Callback for time picked.
45
+
46
+ ```javascript
47
+ $('.timepicker').timepicker()
48
+ .on('changeTime', function(ev) {
49
+ alert('time has changed');
50
+ });
51
+ ```
52
+ Set time via data-time attribute.
53
+
54
+ ```html
55
+ <div class='input-append bootstrap-timepicker-component' style='display: inline;'>
56
+ <input class='dateselect-time input-small' type='text' data-time='12:45 PM'>
57
+ <span class='add-on'><i class='icon-time'></i></span>
58
+ </div>
59
+
data/Rakefile CHANGED
@@ -3,10 +3,11 @@ require File.expand_path('../lib/bootstrap-timepicker-rails/version', __FILE__)
3
3
 
4
4
  desc "Update assets"
5
5
  task 'update' do
6
+
6
7
  system("rm -rf bootstrap-timepicker-src")
7
8
  system("git clone git://github.com/jdewit/bootstrap-timepicker.git bootstrap-timepicker-src")
8
- system("cp bootstrap-timepicker-src/less/timepicker.less vendor/assets/stylesheets/bootstrap-timepicker.less")
9
- system("lessc vendor/assets/stylesheets/bootstrap-timepicker.less > vendor/assets/stylesheets/bootstrap-timepicker.css")
9
+
10
+ system("cp bootstrap-timepicker-src/css/bootstrap-timepicker.min.css vendor/assets/stylesheets/bootstrap-timepicker.css")
10
11
  system("cp bootstrap-timepicker-src/js/bootstrap-timepicker.js vendor/assets/javascripts/bootstrap-timepicker.js")
11
12
  system("git status")
12
13
  end
@@ -27,4 +28,4 @@ task "release" do
27
28
  system("gem build bootstrap-timepicker-rails.gemspec")
28
29
  system("gem push bootstrap-timepicker-rails-#{BootstrapTimepickerRails::Rails::VERSION}.gem")
29
30
  system("git push")
30
- end
31
+ end
@@ -1,5 +1,5 @@
1
1
  module BootstrapTimepickerRails
2
2
  module Rails
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -0,0 +1,806 @@
1
+ /* =========================================================
2
+ * bootstrap-timepicker.js
3
+ * http://www.github.com/jdewit/bootstrap-timepicker
4
+ * =========================================================
5
+ * Copyright 2012
6
+ *
7
+ * Created By:
8
+ * Joris de Wit @joris_dewit
9
+ *
10
+ * Contributions By:
11
+ * Gilbert @mindeavor
12
+ * Koen Punt info@koenpunt.nl
13
+ * Nek
14
+ * Chris Martin
15
+ * Dominic Barnes contact@dominicbarnes.us
16
+ *
17
+ * Licensed under the Apache License, Version 2.0 (the "License");
18
+ * you may not use this file except in compliance with the License.
19
+ * You may obtain a copy of the License at
20
+ *
21
+ * http://www.apache.org/licenses/LICENSE-2.0
22
+ *
23
+ * Unless required by applicable law or agreed to in writing, software
24
+ * distributed under the License is distributed on an "AS IS" BASIS,
25
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26
+ * See the License for the specific language governing permissions and
27
+ * limitations under the License.
28
+ * ========================================================= */
29
+
30
+ !function($) {
31
+
32
+ "use strict"; // jshint ;_;
33
+
34
+ /* TIMEPICKER PUBLIC CLASS DEFINITION
35
+ * ================================== */
36
+ var Timepicker = function(element, options) {
37
+ this.$element = $(element);
38
+ this.options = $.extend({}, $.fn.timepicker.defaults, options, this.$element.data());
39
+ this.minuteStep = this.options.minuteStep || this.minuteStep;
40
+ this.secondStep = this.options.secondStep || this.secondStep;
41
+ this.showMeridian = this.options.showMeridian || this.showMeridian;
42
+ this.showSeconds = this.options.showSeconds || this.showSeconds;
43
+ this.showInputs = this.options.showInputs || this.showInputs;
44
+ this.disableFocus = this.options.disableFocus || this.disableFocus;
45
+ this.template = this.options.template || this.template;
46
+ this.modalBackdrop = this.options.modalBackdrop || this.modalBackdrop;
47
+ this.defaultTime = this.$element.time || this.options.defaultTime || this.defaultTime;
48
+ console.log(this.$element.time)
49
+ console.log(this.options)
50
+ this.open = false;
51
+ this.init();
52
+ };
53
+
54
+ Timepicker.prototype = {
55
+
56
+ constructor: Timepicker
57
+
58
+ , init: function () {
59
+ if (this.$element.parent().hasClass('input-append')) {
60
+ this.$element.parent('.input-append').find('.add-on').on('click', $.proxy(this.showWidget, this));
61
+ this.$element.on({
62
+ focus: $.proxy(this.highlightUnit, this),
63
+ click: $.proxy(this.highlightUnit, this),
64
+ keypress: $.proxy(this.elementKeypress, this),
65
+ blur: $.proxy(this.blurElement, this)
66
+ });
67
+
68
+ } else {
69
+ if (this.template) {
70
+ this.$element.on({
71
+ focus: $.proxy(this.showWidget, this),
72
+ click: $.proxy(this.showWidget, this),
73
+ blur: $.proxy(this.blurElement, this)
74
+ });
75
+ } else {
76
+ this.$element.on({
77
+ focus: $.proxy(this.highlightUnit, this),
78
+ click: $.proxy(this.highlightUnit, this),
79
+ keypress: $.proxy(this.elementKeypress, this),
80
+ blur: $.proxy(this.blurElement, this)
81
+ });
82
+ }
83
+ }
84
+
85
+
86
+ this.$widget = $(this.getTemplate()).appendTo('body');
87
+
88
+ this.$widget.on('click', $.proxy(this.widgetClick, this));
89
+
90
+ if (this.showInputs) {
91
+ this.$widget.find('input').on({
92
+ click: function() { this.select(); },
93
+ keypress: $.proxy(this.widgetKeypress, this),
94
+ change: $.proxy(this.updateFromWidgetInputs, this)
95
+ });
96
+ }
97
+
98
+ this.setDefaultTime(this.defaultTime);
99
+ }
100
+
101
+ , showWidget: function(e) {
102
+ e.stopPropagation();
103
+ e.preventDefault();
104
+
105
+ if (this.open) {
106
+ return;
107
+ }
108
+
109
+ this.$element.trigger('show');
110
+
111
+ if (this.disableFocus) {
112
+ this.$element.blur();
113
+ }
114
+
115
+ var pos = $.extend({}, this.$element.offset(), {
116
+ height: this.$element[0].offsetHeight
117
+ });
118
+
119
+ this.updateFromElementVal();
120
+
121
+ $('html')
122
+ .trigger('click.timepicker.data-api')
123
+ .one('click.timepicker.data-api', $.proxy(this.hideWidget, this));
124
+
125
+ if (this.template === 'modal') {
126
+ this.$widget.modal('show').on('hidden', $.proxy(this.hideWidget, this));
127
+ } else {
128
+ this.$widget.css({
129
+ top: pos.top + pos.height
130
+ , left: pos.left
131
+ })
132
+
133
+ if (!this.open) {
134
+ this.$widget.addClass('open');
135
+ }
136
+ }
137
+
138
+ this.open = true;
139
+ this.$element.trigger('shown');
140
+ }
141
+
142
+ , hideWidget: function(){
143
+ this.$element.trigger('hide');
144
+
145
+ if (this.template === 'modal') {
146
+ this.$widget.modal('hide');
147
+ } else {
148
+ this.$widget.removeClass('open');
149
+ }
150
+ this.open = false;
151
+ this.$element.trigger('hidden');
152
+ }
153
+
154
+ , widgetClick: function(e) {
155
+ e.stopPropagation();
156
+ e.preventDefault();
157
+
158
+ var action = $(e.target).closest('a').data('action');
159
+ if (action) {
160
+ this[action]();
161
+ this.update();
162
+ }
163
+ }
164
+
165
+ , widgetKeypress: function(e) {
166
+ var input = $(e.target).closest('input').attr('name');
167
+
168
+ switch (e.keyCode) {
169
+ case 9: //tab
170
+ if (this.showMeridian) {
171
+ if (input == 'meridian') {
172
+ this.hideWidget();
173
+ }
174
+ } else {
175
+ if (this.showSeconds) {
176
+ if (input == 'second') {
177
+ this.hideWidget();
178
+ }
179
+ } else {
180
+ if (input == 'minute') {
181
+ this.hideWidget();
182
+ }
183
+ }
184
+ }
185
+ break;
186
+ case 27: // escape
187
+ this.hideWidget();
188
+ break;
189
+ case 38: // up arrow
190
+ switch (input) {
191
+ case 'hour':
192
+ this.incrementHour();
193
+ break;
194
+ case 'minute':
195
+ this.incrementMinute();
196
+ break;
197
+ case 'second':
198
+ this.incrementSecond();
199
+ break;
200
+ case 'meridian':
201
+ this.toggleMeridian();
202
+ break;
203
+ }
204
+ this.update();
205
+ break;
206
+ case 40: // down arrow
207
+ switch (input) {
208
+ case 'hour':
209
+ this.decrementHour();
210
+ break;
211
+ case 'minute':
212
+ this.decrementMinute();
213
+ break;
214
+ case 'second':
215
+ this.decrementSecond();
216
+ break;
217
+ case 'meridian':
218
+ this.toggleMeridian();
219
+ break;
220
+ }
221
+ this.update();
222
+ break;
223
+ }
224
+ }
225
+
226
+ , elementKeypress: function(e) {
227
+ var input = this.$element.get(0);
228
+ switch (e.keyCode) {
229
+ case 0: //input
230
+ break;
231
+ case 9: //tab
232
+ this.updateFromElementVal();
233
+ if (this.showMeridian) {
234
+ if (this.highlightedUnit != 'meridian') {
235
+ e.preventDefault();
236
+ this.highlightNextUnit();
237
+ }
238
+ } else {
239
+ if (this.showSeconds) {
240
+ if (this.highlightedUnit != 'second') {
241
+ e.preventDefault();
242
+ this.highlightNextUnit();
243
+ }
244
+ } else {
245
+ if (this.highlightedUnit != 'minute') {
246
+ e.preventDefault();
247
+ this.highlightNextUnit();
248
+ }
249
+ }
250
+ }
251
+ break;
252
+ case 27: // escape
253
+ this.updateFromElementVal();
254
+ break;
255
+ case 37: // left arrow
256
+ this.updateFromElementVal();
257
+ this.highlightPrevUnit();
258
+ break;
259
+ case 38: // up arrow
260
+ switch (this.highlightedUnit) {
261
+ case 'hour':
262
+ this.incrementHour();
263
+ break;
264
+ case 'minute':
265
+ this.incrementMinute();
266
+ break;
267
+ case 'second':
268
+ this.incrementSecond();
269
+ break;
270
+ case 'meridian':
271
+ this.toggleMeridian();
272
+ break;
273
+ }
274
+ this.updateElement();
275
+ break;
276
+ case 39: // right arrow
277
+ this.updateFromElementVal();
278
+ this.highlightNextUnit();
279
+ break;
280
+ case 40: // down arrow
281
+ switch (this.highlightedUnit) {
282
+ case 'hour':
283
+ this.decrementHour();
284
+ break;
285
+ case 'minute':
286
+ this.decrementMinute();
287
+ break;
288
+ case 'second':
289
+ this.decrementSecond();
290
+ break;
291
+ case 'meridian':
292
+ this.toggleMeridian();
293
+ break;
294
+ }
295
+ this.updateElement();
296
+ break;
297
+ }
298
+
299
+ if (e.keyCode !== 0 && e.keyCode !== 8 && e.keyCode !== 9 && e.keyCode !== 46) {
300
+ e.preventDefault();
301
+ }
302
+ }
303
+
304
+ , setValues: function(time) {
305
+ if (this.showMeridian) {
306
+ var arr = time.split(' ');
307
+ var timeArray = arr[0].split(':');
308
+ this.meridian = arr[1];
309
+ } else {
310
+ var timeArray = time.split(':');
311
+ }
312
+
313
+ this.hour = parseInt(timeArray[0], 10);
314
+ this.minute = parseInt(timeArray[1], 10);
315
+ this.second = parseInt(timeArray[2], 10);
316
+
317
+ if (isNaN(this.hour)) {
318
+ this.hour = 0;
319
+ }
320
+ if (isNaN(this.minute)) {
321
+ this.minute = 0;
322
+ }
323
+
324
+ if (this.showMeridian) {
325
+ if (this.hour > 12) {
326
+ this.hour = 12;
327
+ } else if (this.hour < 1) {
328
+ this.hour = 1;
329
+ }
330
+
331
+ if (this.meridian == 'am' || this.meridian == 'a') {
332
+ this.meridian = 'AM';
333
+ } else if (this.meridian == 'pm' || this.meridian == 'p') {
334
+ this.meridian = 'PM';
335
+ }
336
+
337
+ if (this.meridian != 'AM' && this.meridian != 'PM') {
338
+ this.meridian = 'AM';
339
+ }
340
+ } else {
341
+ if (this.hour >= 24) {
342
+ this.hour = 23;
343
+ } else if (this.hour < 0) {
344
+ this.hour = 0;
345
+ }
346
+ }
347
+
348
+ if (this.minute < 0) {
349
+ this.minute = 0;
350
+ } else if (this.minute >= 60) {
351
+ this.minute = 59;
352
+ }
353
+
354
+ if (this.showSeconds) {
355
+ if (isNaN(this.second)) {
356
+ this.second = 0;
357
+ } else if (this.second < 0) {
358
+ this.second = 0;
359
+ } else if (this.second >= 60) {
360
+ this.second = 59;
361
+ }
362
+ }
363
+
364
+ this.updateElement();
365
+ this.updateWidget();
366
+ }
367
+
368
+ , setMeridian: function(meridian) {
369
+ if (meridian == 'a' || meridian == 'am' || meridian == 'AM' ) {
370
+ this.meridian = 'AM';
371
+ } else if (meridian == 'p' || meridian == 'pm' || meridian == 'PM' ) {
372
+ this.meridian = 'PM';
373
+ } else {
374
+ this.updateWidget();
375
+ }
376
+
377
+ this.updateElement();
378
+ }
379
+
380
+ , setDefaultTime: function(defaultTime){
381
+ if (defaultTime) {
382
+ if (defaultTime === 'current') {
383
+ var dTime = new Date();
384
+ var hours = dTime.getHours();
385
+ var minutes = Math.floor(dTime.getMinutes() / this.minuteStep) * this.minuteStep;
386
+ var seconds = Math.floor(dTime.getSeconds() / this.secondStep) * this.secondStep;
387
+ var meridian = "AM";
388
+ if (this.showMeridian) {
389
+ if (hours === 0) {
390
+ hours = 12;
391
+ } else if (hours >= 12) {
392
+ if (hours > 12) {
393
+ hours = hours - 12;
394
+ }
395
+ meridian = "PM";
396
+ } else {
397
+ meridian = "AM";
398
+ }
399
+ }
400
+ this.hour = hours;
401
+ this.minute = minutes;
402
+ this.second = seconds;
403
+ this.meridian = meridian;
404
+ } else if (defaultTime === 'value') {
405
+ this.setValues(this.$element.val());
406
+ } else {
407
+ this.setValues(defaultTime);
408
+ }
409
+ this.update();
410
+ } else {
411
+ this.hour = 0;
412
+ this.minute = 0;
413
+ this.second = 0;
414
+ }
415
+ }
416
+
417
+ , formatTime: function(hour, minute, second, meridian) {
418
+ hour = hour < 10 ? '0' + hour : hour;
419
+ minute = minute < 10 ? '0' + minute : minute;
420
+ second = second < 10 ? '0' + second : second;
421
+
422
+ return hour + ':' + minute + (this.showSeconds ? ':' + second : '') + (this.showMeridian ? ' ' + meridian : '');
423
+ }
424
+
425
+ , getTime: function() {
426
+ return this.formatTime(this.hour, this.minute, this.second, this.meridian);
427
+ }
428
+
429
+ , setTime: function(time) {
430
+ this.setValues(time);
431
+ this.update();
432
+ }
433
+
434
+ , update: function() {
435
+ this.updateElement();
436
+ this.updateWidget();
437
+ this.$element.trigger({
438
+ type: 'changeTime',
439
+ time: this.time
440
+ });
441
+ }
442
+
443
+ , blurElement: function() {
444
+ this.highlightedUnit = undefined;
445
+ this.updateFromElementVal();
446
+ }
447
+
448
+ , updateElement: function() {
449
+ var time = this.getTime();
450
+
451
+ this.$element.val(time).change();
452
+
453
+ switch (this.highlightedUnit) {
454
+ case 'hour':
455
+ this.highlightHour();
456
+ break;
457
+ case 'minute':
458
+ this.highlightMinute();
459
+ break;
460
+ case 'second':
461
+ this.highlightSecond();
462
+ break;
463
+ case 'meridian':
464
+ this.highlightMeridian();
465
+ break;
466
+ }
467
+ }
468
+
469
+ , updateWidget: function() {
470
+ if (this.showInputs) {
471
+ this.$widget.find('input.bootstrap-timepicker-hour').val(this.hour < 10 ? '0' + this.hour : this.hour);
472
+ this.$widget.find('input.bootstrap-timepicker-minute').val(this.minute < 10 ? '0' + this.minute : this.minute);
473
+ if (this.showSeconds) {
474
+ this.$widget.find('input.bootstrap-timepicker-second').val(this.second < 10 ? '0' + this.second : this.second);
475
+ }
476
+ if (this.showMeridian) {
477
+ this.$widget.find('input.bootstrap-timepicker-meridian').val(this.meridian);
478
+ }
479
+ } else {
480
+ this.$widget.find('span.bootstrap-timepicker-hour').text(this.hour);
481
+ this.$widget.find('span.bootstrap-timepicker-minute').text(this.minute < 10 ? '0' + this.minute : this.minute);
482
+ if (this.showSeconds) {
483
+ this.$widget.find('span.bootstrap-timepicker-second').text(this.second < 10 ? '0' + this.second : this.second);
484
+ }
485
+ if (this.showMeridian) {
486
+ this.$widget.find('span.bootstrap-timepicker-meridian').text(this.meridian);
487
+ }
488
+ }
489
+ }
490
+
491
+ , updateFromElementVal: function (e) {
492
+ var time = this.$element.val();
493
+ if (time) {
494
+ this.setValues(time);
495
+ this.updateWidget();
496
+ }
497
+ }
498
+
499
+ , updateFromWidgetInputs: function () {
500
+ var time = $('input.bootstrap-timepicker-hour', this.$widget).val() + ':' +
501
+ $('input.bootstrap-timepicker-minute', this.$widget).val() +
502
+ (this.showSeconds ?
503
+ ':' + $('input.bootstrap-timepicker-second', this.$widget).val()
504
+ : '') +
505
+ (this.showMeridian ?
506
+ ' ' + $('input.bootstrap-timepicker-meridian', this.$widget).val()
507
+ : '');
508
+
509
+ this.setValues(time);
510
+ }
511
+
512
+ , getCursorPosition: function() {
513
+ var input = this.$element.get(0);
514
+
515
+ if ('selectionStart' in input) {
516
+ // Standard-compliant browsers
517
+ return input.selectionStart;
518
+ } else if (document.selection) {
519
+ // IE fix
520
+ input.focus();
521
+ var sel = document.selection.createRange();
522
+ var selLen = document.selection.createRange().text.length;
523
+ sel.moveStart('character', - input.value.length);
524
+
525
+ return sel.text.length - selLen;
526
+ }
527
+ }
528
+
529
+ , highlightUnit: function () {
530
+ var input = this.$element.get(0);
531
+
532
+ this.position = this.getCursorPosition();
533
+ if (this.position >= 0 && this.position <= 2) {
534
+ this.highlightHour();
535
+ } else if (this.position >= 3 && this.position <= 5) {
536
+ this.highlightMinute();
537
+ } else if (this.position >= 6 && this.position <= 8) {
538
+ if (this.showSeconds) {
539
+ this.highlightSecond();
540
+ } else {
541
+ this.highlightMeridian();
542
+ }
543
+ } else if (this.position >= 9 && this.position <= 11) {
544
+ this.highlightMeridian();
545
+ }
546
+ }
547
+
548
+ , highlightNextUnit: function() {
549
+ switch (this.highlightedUnit) {
550
+ case 'hour':
551
+ this.highlightMinute();
552
+ break;
553
+ case 'minute':
554
+ if (this.showSeconds) {
555
+ this.highlightSecond();
556
+ } else {
557
+ this.highlightMeridian();
558
+ }
559
+ break;
560
+ case 'second':
561
+ this.highlightMeridian();
562
+ break;
563
+ case 'meridian':
564
+ this.highlightHour();
565
+ break;
566
+ }
567
+ }
568
+
569
+ , highlightPrevUnit: function() {
570
+ switch (this.highlightedUnit) {
571
+ case 'hour':
572
+ this.highlightMeridian();
573
+ break;
574
+ case 'minute':
575
+ this.highlightHour();
576
+ break;
577
+ case 'second':
578
+ this.highlightMinute();
579
+ break;
580
+ case 'meridian':
581
+ if (this.showSeconds) {
582
+ this.highlightSecond();
583
+ } else {
584
+ this.highlightMinute();
585
+ }
586
+ break;
587
+ }
588
+ }
589
+
590
+ , highlightHour: function() {
591
+ this.highlightedUnit = 'hour';
592
+ this.$element.get(0).setSelectionRange(0,2);
593
+ }
594
+
595
+ , highlightMinute: function() {
596
+ this.highlightedUnit = 'minute';
597
+ this.$element.get(0).setSelectionRange(3,5);
598
+ }
599
+
600
+ , highlightSecond: function() {
601
+ this.highlightedUnit = 'second';
602
+ this.$element.get(0).setSelectionRange(6,8);
603
+ }
604
+
605
+ , highlightMeridian: function() {
606
+ this.highlightedUnit = 'meridian';
607
+ if (this.showSeconds) {
608
+ this.$element.get(0).setSelectionRange(9,11);
609
+ } else {
610
+ this.$element.get(0).setSelectionRange(6,8);
611
+ }
612
+ }
613
+
614
+ , incrementHour: function() {
615
+ if (this.showMeridian) {
616
+ if (this.hour === 11) {
617
+ this.toggleMeridian();
618
+ } else if (this.hour === 12) {
619
+ return this.hour = 1;
620
+ }
621
+ }
622
+ if (this.hour === 23) {
623
+ return this.hour = 0;
624
+ }
625
+ this.hour = this.hour + 1;
626
+ }
627
+
628
+ , decrementHour: function() {
629
+ if (this.showMeridian) {
630
+ if (this.hour === 1) {
631
+ return this.hour = 12;
632
+ }
633
+ else if (this.hour === 12) {
634
+ this.toggleMeridian();
635
+ }
636
+ }
637
+ if (this.hour === 0) {
638
+ return this.hour = 23;
639
+ }
640
+ this.hour = this.hour - 1;
641
+ }
642
+
643
+ , incrementMinute: function() {
644
+ var newVal = this.minute + this.minuteStep - (this.minute % this.minuteStep);
645
+ if (newVal > 59) {
646
+ this.incrementHour();
647
+ this.minute = newVal - 60;
648
+ } else {
649
+ this.minute = newVal;
650
+ }
651
+ }
652
+
653
+ , decrementMinute: function() {
654
+ var newVal = this.minute - this.minuteStep;
655
+ if (newVal < 0) {
656
+ this.decrementHour();
657
+ this.minute = newVal + 60;
658
+ } else {
659
+ this.minute = newVal;
660
+ }
661
+ }
662
+
663
+ , incrementSecond: function() {
664
+ var newVal = this.second + this.secondStep - (this.second % this.secondStep);
665
+ if (newVal > 59) {
666
+ this.incrementMinute();
667
+ this.second = newVal - 60;
668
+ } else {
669
+ this.second = newVal;
670
+ }
671
+ }
672
+
673
+ , decrementSecond: function() {
674
+ var newVal = this.second - this.secondStep;
675
+ if (newVal < 0) {
676
+ this.decrementMinute();
677
+ this.second = newVal + 60;
678
+ } else {
679
+ this.second = newVal;
680
+ }
681
+ }
682
+
683
+ , toggleMeridian: function() {
684
+ this.meridian = this.meridian === 'AM' ? 'PM' : 'AM';
685
+
686
+ this.update();
687
+ }
688
+
689
+ , getTemplate: function() {
690
+ if (this.options.templates[this.options.template]) {
691
+ return this.options.templates[this.options.template];
692
+ }
693
+ if (this.showInputs) {
694
+ var hourTemplate = '<input type="text" name="hour" class="bootstrap-timepicker-hour" maxlength="2"/>';
695
+ var minuteTemplate = '<input type="text" name="minute" class="bootstrap-timepicker-minute" maxlength="2"/>';
696
+ var secondTemplate = '<input type="text" name="second" class="bootstrap-timepicker-second" maxlength="2"/>';
697
+ var meridianTemplate = '<input type="text" name="meridian" class="bootstrap-timepicker-meridian" maxlength="2"/>';
698
+ } else {
699
+ var hourTemplate = '<span class="bootstrap-timepicker-hour"></span>';
700
+ var minuteTemplate = '<span class="bootstrap-timepicker-minute"></span>';
701
+ var secondTemplate = '<span class="bootstrap-timepicker-second"></span>';
702
+ var meridianTemplate = '<span class="bootstrap-timepicker-meridian"></span>';
703
+ }
704
+ var templateContent = '<table class="'+ (this.showSeconds ? 'show-seconds' : '') +' '+ (this.showMeridian ? 'show-meridian' : '') +'">'+
705
+ '<tr>'+
706
+ '<td><a href="#" data-action="incrementHour"><i class="icon-chevron-up"></i></a></td>'+
707
+ '<td class="separator">&nbsp;</td>'+
708
+ '<td><a href="#" data-action="incrementMinute"><i class="icon-chevron-up"></i></a></td>'+
709
+ (this.showSeconds ?
710
+ '<td class="separator">&nbsp;</td>'+
711
+ '<td><a href="#" data-action="incrementSecond"><i class="icon-chevron-up"></i></a></td>'
712
+ : '') +
713
+ (this.showMeridian ?
714
+ '<td class="separator">&nbsp;</td>'+
715
+ '<td class="meridian-column"><a href="#" data-action="toggleMeridian"><i class="icon-chevron-up"></i></a></td>'
716
+ : '') +
717
+ '</tr>'+
718
+ '<tr>'+
719
+ '<td>'+ hourTemplate +'</td> '+
720
+ '<td class="separator">:</td>'+
721
+ '<td>'+ minuteTemplate +'</td> '+
722
+ (this.showSeconds ?
723
+ '<td class="separator">:</td>'+
724
+ '<td>'+ secondTemplate +'</td>'
725
+ : '') +
726
+ (this.showMeridian ?
727
+ '<td class="separator">&nbsp;</td>'+
728
+ '<td>'+ meridianTemplate +'</td>'
729
+ : '') +
730
+ '</tr>'+
731
+ '<tr>'+
732
+ '<td><a href="#" data-action="decrementHour"><i class="icon-chevron-down"></i></a></td>'+
733
+ '<td class="separator"></td>'+
734
+ '<td><a href="#" data-action="decrementMinute"><i class="icon-chevron-down"></i></a></td>'+
735
+ (this.showSeconds ?
736
+ '<td class="separator">&nbsp;</td>'+
737
+ '<td><a href="#" data-action="decrementSecond"><i class="icon-chevron-down"></i></a></td>'
738
+ : '') +
739
+ (this.showMeridian ?
740
+ '<td class="separator">&nbsp;</td>'+
741
+ '<td><a href="#" data-action="toggleMeridian"><i class="icon-chevron-down"></i></a></td>'
742
+ : '') +
743
+ '</tr>'+
744
+ '</table>';
745
+
746
+ var template;
747
+ switch(this.options.template) {
748
+ case 'modal':
749
+ template = '<div class="bootstrap-timepicker modal hide fade in" style="top: 30%; margin-top: 0; width: 200px; margin-left: -100px;" data-backdrop="'+ (this.modalBackdrop ? 'true' : 'false') +'">'+
750
+ '<div class="modal-header">'+
751
+ '<a href="#" class="close" data-dismiss="modal">×</a>'+
752
+ '<h3>Pick a Time</h3>'+
753
+ '</div>'+
754
+ '<div class="modal-content">'+
755
+ templateContent +
756
+ '</div>'+
757
+ '<div class="modal-footer">'+
758
+ '<a href="#" class="btn btn-primary" data-dismiss="modal">Ok</a>'+
759
+ '</div>'+
760
+ '</div>';
761
+
762
+ break;
763
+ case 'dropdown':
764
+ template = '<div class="bootstrap-timepicker dropdown-menu">'+
765
+ templateContent +
766
+ '</div>';
767
+ break;
768
+
769
+ }
770
+ return template;
771
+ }
772
+ };
773
+
774
+
775
+ /* TIMEPICKER PLUGIN DEFINITION
776
+ * =========================== */
777
+
778
+ $.fn.timepicker = function (option) {
779
+ return this.each(function () {
780
+ var $this = $(this)
781
+ , data = $this.data('timepicker')
782
+ , options = typeof option == 'object' && option;
783
+ if (!data) {
784
+ $this.data('timepicker', (data = new Timepicker(this, options)));
785
+ }
786
+ if (typeof option == 'string') {
787
+ data[option]();
788
+ }
789
+ })
790
+ }
791
+
792
+ $.fn.timepicker.defaults = {
793
+ minuteStep: 15
794
+ , secondStep: 15
795
+ , disableFocus: false
796
+ , defaultTime: 'current'
797
+ , showSeconds: false
798
+ , showInputs: true
799
+ , showMeridian: true
800
+ , template: 'dropdown'
801
+ , modalBackdrop: false
802
+ , templates: {} // set custom templates
803
+ }
804
+
805
+ $.fn.timepicker.Constructor = Timepicker
806
+ }(window.jQuery);