Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorwinniehell <git@winniehell.de>2016-11-18 15:26:08 +0300
committerwinniehell <git@winniehell.de>2016-11-18 21:11:18 +0300
commit6c67f4abfe3bb88c0cc5b795e58fd6fc22561359 (patch)
treecb1d8685cfedaa894c0d9c31ff2aa8b192ec03cf /app
parent49e726ec331e2f765fae184e8e9dff42a94d5227 (diff)
Fix typo in Build page JavaScript (!7563)
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/build.js b/app/assets/javascripts/build.js
index 68012e8cf42..e198306e67a 100644
--- a/app/assets/javascripts/build.js
+++ b/app/assets/javascripts/build.js
@@ -172,7 +172,7 @@
$date = $('.js-artifacts-remove');
if ($date.length) {
date = $date.text();
- return $date.text(gl.utils.timefor(new Date(date.replace(/([0-9]+)-([0-9]+)-([0-9]+)/g, '$1/$2/$3')), ' '));
+ return $date.text(gl.utils.timeFor(new Date(date.replace(/([0-9]+)-([0-9]+)-([0-9]+)/g, '$1/$2/$3')), ' '));
}
};