2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Remove regional settings for timepicker

This commit is contained in:
Adam Zammit
2015-08-03 16:26:03 +10:00
parent af20331147
commit ca752d4036
2 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@
*/
var Timepicker = function () {
this.regional = []; // Available regional settings, indexed by language code
this.regional[''] = { // Default regional settings
this.regional['en'] = { // Default regional settings
currentText: 'Now',
closeText: 'Done',
amNames: ['AM', 'A'],
@@ -104,7 +104,7 @@
defaultValue: null,
parse: 'strict'
};
$.extend(this._defaults, this.regional['']);
$.extend(this._defaults, this.regional['en']);
};
$.extend(Timepicker.prototype, {