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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
b237af27
Commit
b237af27
authored
Oct 02, 2020
by
Denys Mishunov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced broken bind with lambdas
parent
7112e5f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
app/assets/javascripts/ide/components/ide.vue
app/assets/javascripts/ide/components/ide.vue
+6
-9
No files found.
app/assets/javascripts/ide/components/ide.vue
View file @
b237af27
...
...
@@ -27,17 +27,14 @@ import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import
{
measurePerformance
}
from
'
../utils
'
;
eventHub
.
$on
(
WEBIDE_MEASURE_TREE_FROM_REQUEST
,
measurePerformance
.
bind
(
WEBIDE_MARK_TREE_FINISH
,
WEBIDE_MEASURE_TREE_FROM_REQUEST
),
eventHub
.
$on
(
WEBIDE_MEASURE_TREE_FROM_REQUEST
,
()
=>
measurePerformance
(
WEBIDE_MARK_TREE_FINISH
,
WEBIDE_MEASURE_TREE_FROM_REQUEST
),
);
eventHub
.
$on
(
WEBIDE_MEASURE_FILE_FROM_REQUEST
,
measurePerformance
.
bind
(
WEBIDE_MARK_FILE_FINISH
,
WEBIDE_MEASURE_FILE_FROM_REQUEST
),
eventHub
.
$on
(
WEBIDE_MEASURE_FILE_FROM_REQUEST
,
()
=>
measurePerformance
(
WEBIDE_MARK_FILE_FINISH
,
WEBIDE_MEASURE_FILE_FROM_REQUEST
),
);
eventHub
.
$on
(
WEBIDE_MEASURE_FILE_AFTER_INTERACTION
,
measurePerformance
.
bind
(
eventHub
.
$on
(
WEBIDE_MEASURE_FILE_AFTER_INTERACTION
,
()
=>
measurePerformance
(
WEBIDE_MARK_FILE_FINISH
,
WEBIDE_MEASURE_FILE_AFTER_INTERACTION
,
WEBIDE_MARK_FILE_CLICKED
,
...
...
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