Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

41 animations refactor #43

Merged
merged 22 commits into from
Feb 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3c83c3b
Refactor base animation logic in own module for timeline #41
artoale Dec 4, 2015
b553418
Refactor class directive to use baseAnimation #41
artoale Dec 4, 2015
844c076
Refactor delay animation to use base-animation #41
artoale Dec 4, 2015
0768457
Default config[function] to noop #41
artoale Dec 4, 2015
f2979b3
Seek animation to end when registering to a non-ready controller #41
artoale Dec 4, 2015
71e7e05
Make "seek" work as it should with disabled - always wait for setup (…
artoale Dec 4, 2015
697e19c
Fix karma dependencies #41
flea89 Dec 8, 2015
a351643
Add specific style linting for tests #41
flea89 Dec 9, 2015
362b8da
Remove redundant clear api, we can simply use seek end intead #41
flea89 Dec 9, 2015
dc26a27
Refactor disable API #41
flea89 Dec 9, 2015
9e9b161
Refactor tests for class directive #41
flea89 Dec 9, 2015
856d47e
Refactor delay directive services #41
flea89 Dec 9, 2015
88ee234
Tweaks to class and delay tests #41
flea89 Dec 9, 2015
5447402
Timiline directive test refactor and fix few issues #41
flea89 Dec 10, 2015
5a9d40e
Rename module cat.animations.base-animation to cat.animations.baseAni…
flea89 Dec 21, 2015
51cd2bf
Add tests for animation link factory #41
flea89 Dec 21, 2015
7a85495
Fix bugs in class and delay tests #41
flea89 Dec 21, 2015
1991fff
Add tests for base animation service #41
flea89 Dec 22, 2015
ac19cb8
Minor cap change #41
flea89 Dec 22, 2015
0e379bd
Update a bunch of karma related deps and add support for code coverag…
flea89 Jan 17, 2016
2e6a8aa
Setup codecov.io #41
flea89 Jan 17, 2016
623995f
Add codecov dep and fix path to lcov.info #41
flea89 Jan 17, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"es2015"
]
}
4 changes: 1 addition & 3 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{


"bitwise" : true,
"camelcase" : true,
"curly" : true,
Expand All @@ -9,7 +7,7 @@
"forin" : true,
"immed" : true,
"indent" : 4,
"latedef" : true,
"latedef" : "nofunc",
"newcap" : true,
"noarg" : true,
"noempty" : true,
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ before_install:
- 'npm install -g bower'
- 'npm install'
- 'bower install'

after_success:
- npm run codecov
Loading