aboutsummaryrefslogtreecommitdiffstats
path: root/src/animation/Runner.js
Commit message (Collapse)AuthorAgeFilesLines
* update dependenciesUlrich-Matthias Schäfer2024-06-181-4/+4
|
* added amove methods to runner (fixes #1131)Ulrich-Matthias Schäfer2023-09-031-0/+12
|
* allow 0 as animation duration and delay (fixes #1125)Ulrich-Matthias Schäfer2023-09-031-7/+7
|
* dependency updates, easier formattingUlrich-Matthias Schäfer2023-06-131-196/+230
|
* Spelling correctionsalbert-github2023-04-151-7/+7
|
* docs: Fix a few typosTim Gates2023-04-051-3/+3
| | | | | | | | | | | | | | | | | There are small typos in: - spec/spec/animation/Runner.js - src/animation/Runner.js - src/animation/Timeline.js Fixes: - Should read `successful` rather than `successfull`. - Should read `transforms` rather than `tranforms`. - Should read `resetting` rather than `reseting`. - Should read `overwrite` rather than `overwfrite`. - Should read `morpher` rather than `morepher`. - Should read `declarative` rather than `declaritive`. Signed-off-by: Tim Gates <tim.gates@iress.com>
* update dependencies, apply new linter fixesUlrich-Matthias Schäfer2021-01-131-58/+61
|
* typos (#1179)ordago2020-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * typos in 1000-accesses.js * typos in transforms.js * typos in Controller.js * typos in Runner.js * typos in Timeline.js * typos in Dom.js * typos in Marker.js * typos in Mask.js * typos in Tspan.js * typos in containerGeometry.js * typos in event.js * typos in css.js * typos in data.js * typos in sugar.js * typos in EventTarget.js * typos in List.js * typos in Matrix.js * typos in SVGArray.js * typos in utils.js * typos in RAFPlugin.js * typos in Runner.js * typos in Timeline.js * typos in Dom.js * typos in Pattern.js * typos in arrange.js * typos in Box.js * typos in SVGNumber.js * typos in utils.js * typos in CONTRIBUTING.md
* sorted method namesUlrich-Matthias Schäfer2020-05-191-209/+207
|
* Fixed IE Polyfills, got rid of ArrayPolyfill in favour of babels own ↵Ulrich-Matthias Schäfer2020-05-041-7/+1
| | | | transforms, updated dependencies, finished tests, removed old es5 tests
* 99% line coverage - BAAAAMUlrich-Matthias Schäfer2020-05-031-19/+64
|
* This is a big one...Ulrich-Matthias Schäfer2020-03-281-1/+1
| | | | | | | | | | | | | | | | | | | | ### Fixed - fixed `zoom()` method of runner which was passed a wrong parameter - fixed positioning methods of `TSpan` to position them by its bounding box - fixed `flip()` method which flips correctly by center by default now and accepts correct arguments - fixed a case in `rbox()` where not always all values of the box were updated - fixed `getOrigin()` function used by `transform()` so that all origin (#1085) popssibilities specified in the docs are working - fixed positioning of text by its baseline when using `amove()` - fixed tons of typings in the svg.d.ts file ### Added - added second Parameter to `SVG(el, isHTML)` which allows to explicitely create elements in the HTML namespace (#1058) - added `unlink()` and `linker()` to hyperlinked elements to remove or access the underling `<a>` element - added `wrap()` method to `Dom` which lets you wrap an element by another one - added `orient()` method to `Marker` - added `options` parameter to `dispatch()` and `fire()` to allow for more special needs - added `newLine()` constructor to `Text` to create a tspan marked as new line (#1088) - added lots of tests in es6 format
* bump version3.0.15Ulrich-Matthias Schäfer2019-11-081-4/+8
| | | | | | | | ### Fixed - allow object input of `when` and `delay` to `animate()` ### Added - added missing dmove function to runner
* Updated dependencies to newest version, new linter fixed stuffUlrich-Matthias Schäfer2019-11-011-10/+10
|
* Register classes explicitly instead of relying on `Function.name` because ↵Ulrich-Matthias Schäfer2019-02-271-1/+1
| | | | classes could be renamed
* Release 3.0.53.0.5Ulrich-Matthias Schäfer2018-12-121-0/+4
|
* Release 3.0.43.0.4Ulrich-Matthias Schäfer2018-12-071-26/+19
|
* Release 3.0.33.0.3Ulrich-Matthias Schäfer2018-12-051-9/+25
|
* Release 3.0.23.0.2Ulrich-Matthias Schäfer2018-12-031-8/+35
|
* Merge branch '3.0.0' into 790-color-spacesUlrich-Matthias Schäfer2018-11-301-4/+18
|\
| * fix bugs in runner, fix importsUlrich-Matthias Schäfer2018-11-261-5/+5
| |
| * Get rid of HTMLNode and Bare in favor of DomUlrich-Matthias Schäfer2018-11-241-1/+1
| | | | | | | | | | - words() and element() added to Dom - svg() now returns the _parent_ of the imported element, when outerHTML is true (which means an element gets replaces)
| * fixed lots of bugs in the timeline. Its now working as expected in all cases.Ulrich-Matthias Schäfer2018-11-231-1/+1
| | | | | | | | | | | | | | | | - refactor code into functions - handle timeSource correctly - allow for immediate updates - Runners dont know about their delay anymore. Thats far more simple. - Timeline is paused on creation
| * fix Timeline so that play, pause, stop, reverse... work correctly. Update ↵Ulrich-Matthias Schäfer2018-11-221-0/+14
| | | | | | | | runners accordingly
* | Reverted some of the lint rules after chatting with fuzzySaivan2018-11-261-545/+293
| | | | | | | | | | | | | | | | | | This commit reverts some of the rules we added on the linter, it changed a lot of code again... but these won't happen too often. Changes ======= - Modified the linter again
* | Changed the esLint rules to avoid silly ternary operators, and to let code ↵Saivan2018-11-251-295/+547
|/ | | | | | | | | | | | | | breathe! This commit modifies some of the eslint rules, to allow our code to be a little bit more readable. This came about because we had a particularly pesky problem, where the code was indenting ternary operators. This fixes that, and makes it easy to add new rules to eslint as we please in the future. Changes ======= - Rebuilt the library with new eslint rules - Changed the eslintrc file to a yaml file by default
* make List return new lists on method calls, add map to array polyfill so ↵Ulrich-Matthias Schäfer2018-11-121-8/+24
| | | | that this works, fix runner
* get rid of the fixmes and todosUlrich-Matthias Schäfer2018-11-081-9/+6
|
* reordered modules, add es6 buildUlrich-Matthias Schäfer2018-11-061-0/+928