summaryrefslogtreecommitdiffstats
path: root/spec
Commit message (Collapse)AuthorAgeFilesLines
...
* | merge karma configurationsUlrich-Matthias Schäfer2018-11-281-3/+3
| |
* | include adopter tests in test bundleUlrich-Matthias Schäfer2018-11-281-1/+1
| |
* | add tests for all exports of adopterUlrich-Matthias Schäfer2018-11-283-2/+165
| |
* | make es5 testsUlrich-Matthias Schäfer2018-11-281-2/+4
| |
* | plumber differences between node and browser so that tests run on bothUlrich-Matthias Schäfer2018-11-288-112/+216
| |
* | make tests work in node and browserUlrich-Matthias Schäfer2018-11-283-11/+77
| |
* | started to add es6 tests using svgdom as fallback in case no dom is foundUlrich-Matthias Schäfer2018-11-285-0/+277
| |
* | Fix build chain so that we now have multiple builds. Details below:Ulrich-Matthias Schäfer2018-11-287-34/+24
| | | | | | | | | | | | | | | | | | | | | | - svg.js: The esm bundle - svg.min.js: The bundle for all browsers for maximum support - svg.node.js: The bundle for node - polyfill.js: Using svg.min.js requires this polyfill in case the Browser does not understand all of ./config/polyfillList.js - polyfillIE.js: This is required when you use IE11 (polyfill.js still required) Please note, that not all test pass for IE11 due to its rounding issues and wrong calculation of bbox. Also note, that `defaultPrevented` is not working for CustomEvents in IE11.
* | Moved utils, namespaces, regex... to a subobject of SVG. Renamed SVGArray ↵Ulrich-Matthias Schäfer2018-11-2410-350/+69
| | | | | | | | and SVGNumber on export to Array and Number
* | Get rid of HTMLNode and Bare in favor of DomUlrich-Matthias Schäfer2018-11-244-49/+41
| | | | | | | | | | - 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-3/+3
|/ | | | | | | | - 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
* rename `doc()` to `root()` and `toDoc()` to `toRoot()` as dicussed in (#932)Ulrich-Matthias Schäfer2018-11-192-9/+9
|
* renamed `Doc` to `Svg` according to (#932)Ulrich-Matthias Schäfer2018-11-195-18/+18
|
* changed image callback according to (#931)Ulrich-Matthias Schäfer2018-11-171-6/+1
|
* remove native() methods, add methods of types directly to elemenetUlrich-Matthias Schäfer2018-11-123-24/+0
|
* reworked parents so that it is useful now, changelogUlrich-Matthias Schäfer2018-11-121-6/+7
|
* make List return new lists on method calls, add map to array polyfill so ↵Ulrich-Matthias Schäfer2018-11-121-6/+6
| | | | that this works, fix runner
* `fill()` and `stroke()` return the fill and stroke attribute when called as ↵Ulrich-Matthias Schäfer2018-11-081-3/+2
| | | | getter (#789)
* implements `round()` (#916)Ulrich-Matthias Schäfer2018-11-081-0/+18
|
* add test for array getter of attrUlrich-Matthias Schäfer2018-11-081-0/+13
|
* added insertAfter/Before, introduce attrHooks, move few methods, ↵Ulrich-Matthias Schäfer2018-11-081-3/+2
| | | | SVG.Text.textPath returns first textPath child now
* clone() does not insert the clone into the dom anymore, added beziere() and ↵Ulrich-Matthias Schäfer2018-11-071-9/+0
| | | | steps() to generate easing functions
* fix mistake in testUlrich-Matthias Schäfer2018-11-071-6/+6
|
* Merge branch '875-es6' into 3.0.0Ulrich-Matthias Schäfer2018-11-0727-6467/+358
|\
| * make one test pass in travisUlrich-Matthias Schäfer2018-11-051-1/+1
| |
| * Linted all files, upgraded all dependenciesUlrich-Matthias Schäfer2018-11-0511-5838/+19
| |
| * rework of classes, make events on every object possibleUlrich-Matthias Schäfer2018-11-051-3/+3
| |
| * forgot about memory testsUlrich-Matthias Schäfer2018-11-041-0/+1
| |
| * Revert back to classes, fix remaining testsUlrich-Matthias Schäfer2018-11-047-83/+74
| |
| * fix even more testsUlrich-Matthias Schäfer2018-11-048-255/+145
| |
| * implement registerMethods(), introduce real arrays for modern browsers, fix ↵Ulrich-Matthias Schäfer2018-11-048-295/+123
| | | | | | | | some tests
* | Fix specsnobuti2018-10-271-17/+30
| |
* | Added some testsnobuti2018-10-261-0/+38
|/
* fix testsUlrich-Matthias Schäfer2018-10-186-2997/+2912
|
* fixing testsUlrich-Matthias Schäfer2018-10-104-14/+18
|
* Optimized the matrix functions so that the transform function is a multitude ↵Ulrich-Matthias Schäfer2018-10-082-139/+49
| | | | faster for parameterized input
* The timelines continue function requests a step animation frameSaivan2018-06-011-3/+13
|
* renamed method names as suggested, added failing testUlrich-Matthias Schäfer2018-06-011-25/+62
|
* fix for the endvalue of the animationUlrich-Matthias Schäfer2018-05-311-9/+240
|
* add failing testUlrich-Matthias Schäfer2018-05-311-0/+12
|
* worked a bit on timeline, build example, found bug which needs a fixUlrich-Matthias Schäfer2018-05-301-2/+228
|
* The runners step was reimplemented with testsSaivan2018-05-311-42/+70
|
* Got looping working with only a single waitSaivan2018-05-301-0/+31
|
* fixed some more errores, make declaritive controllers partially work. added ↵Ulrich-Matthias Schäfer2018-05-241-1/+19
| | | | PID controller for testing reasons
* go through specs and make fixes where neededUlrich-Matthias Schäfer2018-05-243-38/+38
|
* Stuff is moving again after fixing several stuffUlrich-Matthias Schäfer2018-05-241-0/+273
|
* Added a few more use cases and suchSaivan2018-05-224-4/+199
|\
| * add requestAnimationFrame Mock and tests for the animatorUlrich-Matthias Schäfer2018-05-164-3/+135
| |
* | Most of the animations are workingSaivan2018-05-172-3/+11
|/
* fixed morphing. Changed easing function so that it can handle stringsUlrich-Matthias Schäfer2018-05-151-15/+47
| | | | | | - error in Matrix constructor which ignores translateX (and more?) - generelized all morphable objects so that they behave logical - SVG.Morphable can handle all datatypes now