Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
8d865f62
Commit
8d865f62
authored
May 08, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove bind polyfill from notes.js
parent
d49be6c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
20 deletions
+18
-20
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+18
-20
No files found.
app/assets/javascripts/notes.js
View file @
8d865f62
...
...
@@ -22,8 +22,6 @@ const normalizeNewlines = function(str) {
};
(
function
()
{
var
bind
=
function
(
fn
,
me
)
{
return
function
()
{
return
fn
.
apply
(
me
,
arguments
);
};
};
this
.
Notes
=
(
function
()
{
const
MAX_VISIBLE_COMMIT_LIST_COUNT
=
3
;
const
REGEX_SLASH_COMMANDS
=
/
\/\w
+/g
;
...
...
@@ -31,24 +29,24 @@ const normalizeNewlines = function(str) {
Notes
.
interval
=
null
;
function
Notes
(
notes_url
,
note_ids
,
last_fetched_at
,
view
)
{
this
.
updateTargetButtons
=
bind
(
this
.
updateTargetButtons
,
this
);
this
.
updateComment
=
bind
(
this
.
updateComment
,
this
);
this
.
visibilityChange
=
bind
(
this
.
visibilityChange
,
this
);
this
.
cancelDiscussionForm
=
bind
(
this
.
cancelDiscussionForm
,
this
);
this
.
addDiffNote
=
bind
(
this
.
addDiffNote
,
this
);
this
.
setupDiscussionNoteForm
=
bind
(
this
.
setupDiscussionNoteForm
,
this
);
this
.
replyToDiscussionNote
=
bind
(
this
.
replyToDiscussionNote
,
this
);
this
.
removeNote
=
bind
(
this
.
removeNote
,
this
);
this
.
cancelEdit
=
bind
(
this
.
cancelEdit
,
this
);
this
.
updateNote
=
bind
(
this
.
updateNote
,
this
);
this
.
addDiscussionNote
=
bind
(
this
.
addDiscussionNote
,
this
);
this
.
addNoteError
=
bind
(
this
.
addNoteError
,
this
);
this
.
addNote
=
bind
(
this
.
addNote
,
this
);
this
.
resetMainTargetForm
=
bind
(
this
.
resetMainTargetForm
,
this
);
this
.
refresh
=
bind
(
this
.
refresh
,
this
);
this
.
keydownNoteText
=
bind
(
this
.
keydownNoteText
,
this
);
this
.
toggleCommitList
=
bind
(
this
.
toggleCommitList
,
this
);
this
.
postComment
=
bind
(
this
.
postComment
,
this
);
this
.
updateTargetButtons
=
this
.
updateTargetButtons
.
bind
(
this
);
this
.
updateComment
=
this
.
updateComment
.
bind
(
this
);
this
.
visibilityChange
=
this
.
visibilityChange
.
bind
(
this
);
this
.
cancelDiscussionForm
=
this
.
cancelDiscussionForm
.
bind
(
this
);
this
.
addDiffNote
=
this
.
addDiffNote
.
bind
(
this
);
this
.
setupDiscussionNoteForm
=
this
.
setupDiscussionNoteForm
.
bind
(
this
);
this
.
replyToDiscussionNote
=
this
.
replyToDiscussionNote
.
bind
(
this
);
this
.
removeNote
=
this
.
removeNote
.
bind
(
this
);
this
.
cancelEdit
=
this
.
cancelEdit
.
bind
(
this
);
this
.
updateNote
=
this
.
updateNote
.
bind
(
this
);
this
.
addDiscussionNote
=
this
.
addDiscussionNote
.
bind
(
this
);
this
.
addNoteError
=
this
.
addNoteError
.
bind
(
this
);
this
.
addNote
=
this
.
addNote
.
bind
(
this
);
this
.
resetMainTargetForm
=
this
.
resetMainTargetForm
.
bind
(
this
);
this
.
refresh
=
this
.
refresh
.
bind
(
this
);
this
.
keydownNoteText
=
this
.
keydownNoteText
.
bind
(
this
);
this
.
toggleCommitList
=
this
.
toggleCommitList
.
bind
(
this
);
this
.
postComment
=
this
.
postComment
.
bind
(
this
);
this
.
notes_url
=
notes_url
;
this
.
note_ids
=
note_ids
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment