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
0986fe23
Commit
0986fe23
authored
Aug 05, 2016
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace animateEmoji timeout with eventListener
parent
83cd3d79
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
49 deletions
+39
-49
CHANGELOG
CHANGELOG
+1
-0
awards_handler.js
app/assets/javascripts/awards_handler.js
+5
-5
animations.scss
app/assets/stylesheets/framework/animations.scss
+23
-44
mixins.scss
app/assets/stylesheets/framework/mixins.scss
+10
-0
No files found.
CHANGELOG
View file @
0986fe23
...
...
@@ -26,6 +26,7 @@ v 8.12.0 (unreleased)
- API: Expose issue confidentiality flag. (Robert Schilling)
- Fix markdown anchor icon interaction (ClemMakesApps)
- Test migration paths from 8.5 until current release !4874
- Replace animateEmoji timeout with eventListener (ClemMakesApps)
- Optimistic locking for Issues and Merge Requests (title and description overriding prevention)
- Add `wiki_page_events` to project hook APIs (Ben Boeckel)
- Remove Gitorious import
...
...
app/assets/javascripts/awards_handler.js
View file @
0986fe23
...
...
@@ -255,12 +255,12 @@
};
AwardsHandler
.
prototype
.
animateEmoji
=
function
(
$emoji
)
{
var
className
;
className
=
'pulse animated'
;
var
className
=
'pulse animated once short'
;
$emoji
.
addClass
(
className
);
return
setTimeout
((
function
()
{
return
$emoji
.
removeClass
(
className
);
}),
321
);
$emoji
.
on
(
'webkitAnimationEnd animationEnd'
,
function
()
{
$
(
this
).
removeClass
(
className
);
});
};
AwardsHandler
.
prototype
.
createEmoji
=
function
(
votesBlock
,
emoji
)
{
...
...
app/assets/stylesheets/framework/animations.scss
View file @
0986fe23
...
...
@@ -8,65 +8,44 @@
// Copyright (c) 2016 Daniel Eden
.animated
{
-webkit-animation-duration
:
1s
;
animation-duration
:
1s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
}
.animated.infinite
{
-webkit-animation-iteration-count
:
infinite
;
animation-iteration-count
:
infinite
;
}
@include
webkit-prefix
(
animation-duration
,
1s
);
@include
webkit-prefix
(
animation-fill-mode
,
both
);
.animated.hinge
{
-webkit-animation-duration
:
2s
;
animation-duration
:
2s
;
}
&
.infinite
{
@include
webkit-prefix
(
animation-iteration-count
,
infinite
);
}
.animated.flipOutX
,
.animated.flipOutY
,
.animated.bounceIn
,
.animated.bounceOut
{
-webkit-animation-duration
:
.75s
;
animation-duration
:
.75s
;
}
&
.once
{
@include
webkit-prefix
(
animation-iteration-count
,
1
);
}
@-webkit-keyframes
pulse
{
from
{
-webkit-transform
:
scale3d
(
1
,
1
,
1
);
transform
:
scale3d
(
1
,
1
,
1
);
&
.hinge
{
@include
webkit-prefix
(
animation-duration
,
2s
);
}
50
%
{
-webkit-transform
:
scale3d
(
1
.05
,
1
.05
,
1
.05
);
transform
:
scale3d
(
1
.05
,
1
.05
,
1
.05
);
&
.flipOutX
,
&
.flipOutY
,
&
.bounceIn
,
&
.bounceOut
{
@include
webkit-prefix
(
animation-duration
,
.75s
);
}
to
{
-webkit-transform
:
scale3d
(
1
,
1
,
1
);
transform
:
scale3d
(
1
,
1
,
1
);
&
.short
{
@include
webkit-prefix
(
animation-duration
,
321ms
);
@include
webkit-prefix
(
animation-fill-mode
,
none
);
}
}
@keyframes
pulse
{
from
{
-webkit-transform
:
scale3d
(
1
,
1
,
1
);
transform
:
scale3d
(
1
,
1
,
1
);
@include
keyframes
(
pulse
)
{
from
,
to
{
@include
webkit-prefix
(
transform
,
scale3d
(
1
,
1
,
1
));
}
50
%
{
-webkit-transform
:
scale3d
(
1
.05
,
1
.05
,
1
.05
);
transform
:
scale3d
(
1
.05
,
1
.05
,
1
.05
);
}
to
{
-webkit-transform
:
scale3d
(
1
,
1
,
1
);
transform
:
scale3d
(
1
,
1
,
1
);
@include
webkit-prefix
(
transform
,
scale3d
(
1
.05
,
1
.05
,
1
.05
));
}
}
.pulse
{
-webkit-animation-name
:
pulse
;
animation-name
:
pulse
;
@include
webkit-prefix
(
animation-name
,
pulse
);
}
app/assets/stylesheets/framework/mixins.scss
View file @
0986fe23
...
...
@@ -85,3 +85,13 @@
#{
'-webkit-'
+
$property
}
:
$
value
;
#{
$property
}
:
$
value
;
}
@mixin
keyframes
(
$animation-name
)
{
@-webkit-keyframes
#{
$animation-name
}
{
@content
;
}
@keyframes
#{
$animation-name
}
{
@content
;
}
}
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