diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-05-08 14:15:08 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-05-08 17:40:21 -0500 |
commit | 45e8503facfd806f8621f48653c443d7d31aa9f3 (patch) | |
tree | 8049f5f266b53bcbfda0b877cbe422e6abf6c714 /app | |
parent | e4e95adf484d7cc650d14814137e080af51fa828 (diff) | |
download | gitlab-ce-45e8503facfd806f8621f48653c443d7d31aa9f3.tar.gz |
remove bind polyfill from u2f/authenticate.js
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/u2f/authenticate.js | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/app/assets/javascripts/u2f/authenticate.js b/app/assets/javascripts/u2f/authenticate.js index 500b78fc5d8..cd5280948fd 100644 --- a/app/assets/javascripts/u2f/authenticate.js +++ b/app/assets/javascripts/u2f/authenticate.js @@ -10,18 +10,16 @@ (function() { const global = window.gl || (window.gl = {}); - var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; }; - global.U2FAuthenticate = (function() { function U2FAuthenticate(container, form, u2fParams, fallbackButton, fallbackUI) { this.container = container; - this.renderNotSupported = bind(this.renderNotSupported, this); - this.renderAuthenticated = bind(this.renderAuthenticated, this); - this.renderError = bind(this.renderError, this); - this.renderInProgress = bind(this.renderInProgress, this); - this.renderTemplate = bind(this.renderTemplate, this); - this.authenticate = bind(this.authenticate, this); - this.start = bind(this.start, this); + this.renderNotSupported = this.renderNotSupported.bind(this); + this.renderAuthenticated = this.renderAuthenticated.bind(this); + this.renderError = this.renderError.bind(this); + this.renderInProgress = this.renderInProgress.bind(this); + this.renderTemplate = this.renderTemplate.bind(this); + this.authenticate = this.authenticate.bind(this); + this.start = this.start.bind(this); this.appId = u2fParams.app_id; this.challenge = u2fParams.challenge; this.form = form; |