BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
278bf413
Commit
278bf413
authored
Jun 20, 2017
by
Tim Zallmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes scrolling + improves Performance through assigning found $ elements to variables
parent
bf57a7e8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
7 deletions
+16
-7
right_sidebar.js
app/assets/javascripts/right_sidebar.js
+15
-6
issuable.scss
app/assets/stylesheets/pages/issuable.scss
+1
-1
No files found.
app/assets/javascripts/right_sidebar.js
View file @
278bf413
...
...
@@ -7,6 +7,13 @@ import Cookies from 'js-cookie';
function
Sidebar
(
currentUser
)
{
this
.
toggleTodo
=
this
.
toggleTodo
.
bind
(
this
);
this
.
sidebar
=
$
(
'aside'
);
this
.
$sidebarInner
=
this
.
sidebar
.
find
(
'.issuable-sidebar'
);
this
.
$navGitlab
=
$
(
'.navbar-gitlab'
);
this
.
$layoutNav
=
$
(
'.layout-nav'
);
this
.
$subScroll
=
$
(
'.sub-nav-scroll'
);
this
.
$rightSidebar
=
$
(
'.js-right-sidebar'
);
this
.
removeListeners
();
this
.
addEventListeners
();
}
...
...
@@ -21,14 +28,15 @@ import Cookies from 'js-cookie';
Sidebar
.
prototype
.
addEventListeners
=
function
()
{
const
$document
=
$
(
document
);
const
throttledSetSidebarHeight
=
_
.
throttle
(
this
.
setSidebarHeight
,
10
);
const
throttledSetSidebarHeight
=
_
.
throttle
(
this
.
setSidebarHeight
.
bind
(
this
),
20
);
const
debouncedSetSidebarHeight
=
_
.
debounce
(
this
.
setSidebarHeight
.
bind
(
this
),
200
);
this
.
sidebar
.
on
(
'click'
,
'.sidebar-collapsed-icon'
,
this
,
this
.
sidebarCollapseClicked
);
$
(
'.dropdown'
).
on
(
'hidden.gl.dropdown'
,
this
,
this
.
onSidebarDropdownHidden
);
$
(
'.dropdown'
).
on
(
'loading.gl.dropdown'
,
this
.
sidebarDropdownLoading
);
$
(
'.dropdown'
).
on
(
'loaded.gl.dropdown'
,
this
.
sidebarDropdownLoaded
);
$
(
window
).
on
(
'resize'
,
()
=>
throttledSetSidebarHeight
());
$document
.
on
(
'scroll'
,
()
=>
throttl
edSetSidebarHeight
());
$document
.
on
(
'scroll'
,
()
=>
debounc
edSetSidebarHeight
());
$document
.
on
(
'click'
,
'.js-sidebar-toggle'
,
function
(
e
,
triggered
)
{
var
$allGutterToggleIcons
,
$this
,
$thisIcon
;
e
.
preventDefault
();
...
...
@@ -207,13 +215,14 @@ import Cookies from 'js-cookie';
};
Sidebar
.
prototype
.
setSidebarHeight
=
function
()
{
const
$navHeight
=
$
(
'.navbar-gitlab'
).
outerHeight
()
+
$
(
'.layout-nav'
).
outerHeight
()
+
$
(
'.sub-nav-scroll'
).
outerHeight
();
const
$rightSidebar
=
$
(
'.js-right-sidebar'
);
const
$navHeight
=
this
.
$navGitlab
.
outerHeight
()
+
this
.
$layoutNav
.
outerHeight
()
+
(
this
.
$subScroll
?
this
.
$subScroll
.
outerHeight
()
:
0
);
const
diff
=
$navHeight
-
$
(
window
).
scrollTop
();
if
(
diff
>
0
)
{
$rightSidebar
.
outerHeight
(
$
(
window
).
height
()
-
diff
);
this
.
$rightSidebar
.
outerHeight
(
$
(
window
).
height
()
-
diff
);
this
.
$sidebarInner
.
height
(
'100%'
);
}
else
{
$rightSidebar
.
outerHeight
(
'100%'
);
this
.
$rightSidebar
.
outerHeight
(
'100%'
);
this
.
$sidebarInner
.
height
(
''
);
}
};
...
...
app/assets/stylesheets/pages/issuable.scss
View file @
278bf413
...
...
@@ -204,7 +204,7 @@
.issuable-sidebar
{
width
:
calc
(
100%
+
100px
);
height
:
100%
;
height
:
calc
(
100%
-
#{
$header-height
}
)
;
overflow-y
:
scroll
;
overflow-x
:
hidden
;
-webkit-overflow-scrolling
:
touch
;
...
...
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