Removed unused Date.prototype.getHourMinuteSecond().
Unused since fa0653cd1d
.
This commit is contained in:
parent
93d1f2d209
commit
8c694317f8
|
@ -111,10 +111,6 @@ function findPosY(obj) {
|
|||
return this.getTwoDigitHour() + ':' + this.getTwoDigitMinute();
|
||||
};
|
||||
|
||||
Date.prototype.getHourMinuteSecond = function() {
|
||||
return this.getTwoDigitHour() + ':' + this.getTwoDigitMinute() + ':' + this.getTwoDigitSecond();
|
||||
};
|
||||
|
||||
Date.prototype.getFullMonthName = function() {
|
||||
return typeof window.CalendarNamespace === "undefined"
|
||||
? this.getTwoDigitMonth()
|
||||
|
|
|
@ -46,11 +46,6 @@ QUnit.test('Date.getHourMinute', function(assert) {
|
|||
assert.equal(new Date(2014, 6, 1, 13, 25).getHourMinute(), '13:25', '1:25 pm is 13:25');
|
||||
});
|
||||
|
||||
QUnit.test('Date.getHourMinuteSecond', function(assert) {
|
||||
assert.equal(new Date(2014, 6, 1, 11, 0, 0).getHourMinuteSecond(), '11:00:00', '11:00 am is 11:00:00');
|
||||
assert.equal(new Date(2014, 6, 1, 17, 45, 30).getHourMinuteSecond(), '17:45:30', '5:45:30 pm is 17:45:30');
|
||||
});
|
||||
|
||||
QUnit.test('Date.strftime', function(assert) {
|
||||
var date = new Date(2014, 6, 1, 11, 0, 5);
|
||||
assert.equal(date.strftime('%Y-%m-%d %H:%M:%S'), '2014-07-01 11:00:05');
|
||||
|
|
Loading…
Reference in New Issue