diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2018-06-25 14:54:54 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-03-27 09:12:44 -0400 |
| commit | a25029b33607b72d0bfc2ffd449bafe1ab3beeab (patch) | |
| tree | 5494e04c275864cfeed34b78c517bc75e68dd753 /django | |
| parent | 8c694317f87dd0db95b035216f9b49299a7512b3 (diff) | |
Removed unused Date.prototype.getHourMinute().
Unused since d2180a6bf3a72bad67bf4897b0ce2d94a6214fc4.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/admin/static/admin/js/core.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/django/contrib/admin/static/admin/js/core.js b/django/contrib/admin/static/admin/js/core.js index 78b223701f..b269ebc1a5 100644 --- a/django/contrib/admin/static/admin/js/core.js +++ b/django/contrib/admin/static/admin/js/core.js @@ -107,10 +107,6 @@ function findPosY(obj) { return (this.getSeconds() < 10) ? '0' + this.getSeconds() : this.getSeconds(); }; - Date.prototype.getHourMinute = function() { - return this.getTwoDigitHour() + ':' + this.getTwoDigitMinute(); - }; - Date.prototype.getFullMonthName = function() { return typeof window.CalendarNamespace === "undefined" ? this.getTwoDigitMonth() |
