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
b8b4bdcc
Commit
b8b4bdcc
authored
Dec 13, 2019
by
Winnie Hellmann
Committed by
Clement Ho
Dec 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove var from app/assets/javascripts/commit/image_file.js
parent
5193a9bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
28 deletions
+26
-28
app/assets/javascripts/commit/image_file.js
app/assets/javascripts/commit/image_file.js
+21
-28
changelogs/unreleased/winh-var-image_file.yml
changelogs/unreleased/winh-var-image_file.yml
+5
-0
No files found.
app/assets/javascripts/commit/image_file.js
View file @
b8b4bdcc
/* eslint-disable func-names, no-
var, no-
else-return, consistent-return, one-var, no-return-assign */
/* eslint-disable func-names, no-else-return, consistent-return, one-var, no-return-assign */
import
$
from
'
jquery
'
;
...
...
@@ -51,7 +51,7 @@ export default class ImageFile {
}
// eslint-disable-next-line class-methods-use-this
initDraggable
(
$el
,
padding
,
callback
)
{
var
dragging
=
false
;
let
dragging
=
false
;
const
$body
=
$
(
'
body
'
);
const
$offsetEl
=
$el
.
parent
();
const
dragStart
=
function
()
{
...
...
@@ -88,14 +88,12 @@ export default class ImageFile {
}
static
prepareFrames
(
view
)
{
var
maxHeight
,
maxWidth
;
maxWidth
=
0
;
maxHeight
=
0
;
let
maxWidth
=
0
;
let
maxHeight
=
0
;
$
(
'
.frame
'
,
view
)
.
each
((
index
,
frame
)
=>
{
var
height
,
width
;
width
=
$
(
frame
).
width
();
height
=
$
(
frame
).
height
();
const
width
=
$
(
frame
).
width
();
const
height
=
$
(
frame
).
height
();
maxWidth
=
width
>
maxWidth
?
width
:
maxWidth
;
return
(
maxHeight
=
height
>
maxHeight
?
height
:
maxHeight
);
})
...
...
@@ -110,8 +108,7 @@ export default class ImageFile {
'
two-up
'
:
function
()
{
return
$
(
'
.two-up.view .wrap
'
,
this
.
file
).
each
((
index
,
wrap
)
=>
{
$
(
'
img
'
,
wrap
).
each
(
function
()
{
var
currentWidth
;
currentWidth
=
$
(
this
).
width
();
const
currentWidth
=
$
(
this
).
width
();
if
(
currentWidth
>
availWidth
/
2
)
{
return
$
(
this
).
width
(
availWidth
/
2
);
}
...
...
@@ -124,16 +121,14 @@ export default class ImageFile {
});
},
swipe
()
{
var
maxHeight
,
maxWidth
;
maxWidth
=
0
;
maxHeight
=
0
;
let
maxWidth
=
0
;
let
maxHeight
=
0
;
return
$
(
'
.swipe.view
'
,
this
.
file
).
each
((
index
,
view
)
=>
{
var
$swipeWrap
,
$swipeBar
,
$swipeFrame
,
wrapPadding
;
const
ref
=
ImageFile
.
prepareFrames
(
view
);
[
maxWidth
,
maxHeight
]
=
ref
;
$swipeFrame
=
$
(
'
.swipe-frame
'
,
view
);
$swipeWrap
=
$
(
'
.swipe-wrap
'
,
view
);
$swipeBar
=
$
(
'
.swipe-bar
'
,
view
);
const
$swipeFrame
=
$
(
'
.swipe-frame
'
,
view
);
const
$swipeWrap
=
$
(
'
.swipe-wrap
'
,
view
);
const
$swipeBar
=
$
(
'
.swipe-bar
'
,
view
);
$swipeFrame
.
css
({
width
:
maxWidth
+
16
,
...
...
@@ -148,7 +143,7 @@ export default class ImageFile {
left
:
1
,
});
wrapPadding
=
parseInt
(
$swipeWrap
.
css
(
'
right
'
).
replace
(
'
px
'
,
''
),
10
);
const
wrapPadding
=
parseInt
(
$swipeWrap
.
css
(
'
right
'
).
replace
(
'
px
'
,
''
),
10
);
this
.
initDraggable
(
$swipeBar
,
wrapPadding
,
(
e
,
left
)
=>
{
if
(
left
>
0
&&
left
<
$swipeFrame
.
width
()
-
wrapPadding
*
2
)
{
...
...
@@ -159,19 +154,17 @@ export default class ImageFile {
});
},
'
onion-skin
'
:
function
()
{
var
dragTrackWidth
,
maxHeight
,
maxWidth
;
let
maxHeight
,
maxWidth
;
maxWidth
=
0
;
maxHeight
=
0
;
dragTrackWidth
=
$
(
'
.drag-track
'
,
this
.
file
).
width
()
-
$
(
'
.dragger
'
,
this
.
file
).
width
();
const
dragTrackWidth
=
$
(
'
.drag-track
'
,
this
.
file
).
width
()
-
$
(
'
.dragger
'
,
this
.
file
).
width
();
return
$
(
'
.onion-skin.view
'
,
this
.
file
).
each
((
index
,
view
)
=>
{
var
$frame
,
$track
,
$dragger
,
$frameAdded
,
framePadding
;
const
ref
=
ImageFile
.
prepareFrames
(
view
);
[
maxWidth
,
maxHeight
]
=
ref
;
$frame
=
$
(
'
.onion-skin-frame
'
,
view
);
$frameAdded
=
$
(
'
.frame.added
'
,
view
);
$track
=
$
(
'
.drag-track
'
,
view
);
$dragger
=
$
(
'
.dragger
'
,
$track
);
const
$frame
=
$
(
'
.onion-skin-frame
'
,
view
);
const
$frameAdded
=
$
(
'
.frame.added
'
,
view
);
const
$track
=
$
(
'
.drag-track
'
,
view
);
const
$dragger
=
$
(
'
.dragger
'
,
$track
);
$frame
.
css
({
width
:
maxWidth
+
16
,
...
...
@@ -186,10 +179,10 @@ export default class ImageFile {
});
$frameAdded
.
css
(
'
opacity
'
,
1
);
framePadding
=
parseInt
(
$frameAdded
.
css
(
'
right
'
).
replace
(
'
px
'
,
''
),
10
);
const
framePadding
=
parseInt
(
$frameAdded
.
css
(
'
right
'
).
replace
(
'
px
'
,
''
),
10
);
this
.
initDraggable
(
$dragger
,
framePadding
,
(
e
,
left
)
=>
{
var
opacity
=
left
/
dragTrackWidth
;
const
opacity
=
left
/
dragTrackWidth
;
if
(
opacity
>=
0
&&
opacity
<=
1
)
{
$dragger
.
css
(
'
left
'
,
left
);
...
...
changelogs/unreleased/winh-var-image_file.yml
0 → 100644
View file @
b8b4bdcc
---
title
:
Remove var from app/assets/javascripts/commit/image_file.js
merge_request
:
21649
author
:
Abubakar Hassan
type
:
other
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