BigW Consortium Gitlab

Commit 306be281 by Mike Greiling

remove bind polyfill from files_comment_button.js

parent 09e2c1af
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
/* global notes */ /* global notes */
let $commentButtonTemplate; let $commentButtonTemplate;
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
window.FilesCommentButton = (function() { window.FilesCommentButton = (function() {
var COMMENT_BUTTON_CLASS, EMPTY_CELL_CLASS, LINE_COLUMN_CLASSES, LINE_CONTENT_CLASS, LINE_HOLDER_CLASS, LINE_NUMBER_CLASS, OLD_LINE_CLASS, TEXT_FILE_SELECTOR, UNFOLDABLE_LINE_CLASS; var COMMENT_BUTTON_CLASS, EMPTY_CELL_CLASS, LINE_COLUMN_CLASSES, LINE_CONTENT_CLASS, LINE_HOLDER_CLASS, LINE_NUMBER_CLASS, OLD_LINE_CLASS, TEXT_FILE_SELECTOR, UNFOLDABLE_LINE_CLASS;
...@@ -27,8 +26,8 @@ window.FilesCommentButton = (function() { ...@@ -27,8 +26,8 @@ window.FilesCommentButton = (function() {
TEXT_FILE_SELECTOR = '.text-file'; TEXT_FILE_SELECTOR = '.text-file';
function FilesCommentButton(filesContainerElement) { function FilesCommentButton(filesContainerElement) {
this.render = bind(this.render, this); this.render = this.render.bind(this);
this.hideButton = bind(this.hideButton, this); this.hideButton = this.hideButton.bind(this);
this.isParallelView = notes.isParallelView(); this.isParallelView = notes.isParallelView();
filesContainerElement.on('mouseover', LINE_COLUMN_CLASSES, this.render) filesContainerElement.on('mouseover', LINE_COLUMN_CLASSES, this.render)
.on('mouseleave', LINE_COLUMN_CLASSES, this.hideButton); .on('mouseleave', LINE_COLUMN_CLASSES, this.hideButton);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment