summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | dont generate esm bundle anymore and link to src/main.js directly. Move ↵Ulrich-Matthias Schäfer2018-12-019-75/+43
| | | | | | | | | | | | | | | | | | bower to its own repo rename makeNode back to create
* | | delete dist files from repo.Ulrich-Matthias Schäfer2018-12-018-13309/+0
| |/ |/|
* | fix testing with svgdomUlrich-Matthias Schäfer2018-11-285-43/+57
| |
* | Merge branch 'es6-tests' into 3.0.0Ulrich-Matthias Schäfer2018-11-2826-129/+1000
|\ \
| * | merge karma configurationsUlrich-Matthias Schäfer2018-11-282-117/+50
| | |
| * | run buildUlrich-Matthias Schäfer2018-11-287-6171/+5912
| | |
| * | include adopter tests in test bundleUlrich-Matthias Schäfer2018-11-282-2/+2
| | |
| * | add tests for all exports of adopterUlrich-Matthias Schäfer2018-11-284-8/+177
| | |
| * | make es5 testsUlrich-Matthias Schäfer2018-11-285-2/+207
| | |
| * | add config for karma to run es6 testsUlrich-Matthias Schäfer2018-11-282-2/+118
| | |
| * | plumber differences between node and browser so that tests run on bothUlrich-Matthias Schäfer2018-11-2812-5992/+6402
| | |
| * | 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-287-61/+292
|/ /
* | Fix build chain so that we now have multiple builds. Details below:Ulrich-Matthias Schäfer2018-11-2834-6383/+12734
| | | | | | | | | | | | | | | | | | | | | | - 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.
* | Merge branch 'feature/tests2' into 3.0.0Ulrich-Matthias Schäfer2018-11-2714-713/+1010
|\ \
| * | add polyfill for CustomEventUlrich-Matthias Schäfer2018-11-244-2/+10
| | |
| * | updated karma-jasmine to 2.0 - fixing ↵dotnetCarpenter2018-11-152-26/+11
| | | | | | | | | | | | https://github.com/karma-runner/karma-chrome-launcher/issues/190
| * | cleanupdotnetCarpenter2018-11-146-4/+5
| | |
| * | add rollup config to build polyfillsUlrich-Matthias Schäfer2018-11-134-26/+53
| | |
| * | Merge branch '3.0.0' into feature/tests2dotnetCarpenter2018-11-1338-274/+7395
| |\ \
| * | | committing so @fuzzyma can continue the workdotnetCarpenter2018-11-137-7365/+236
| | | |
| * | | do not send codecoverage + start some more browsers at saucelabsdotnetCarpenter2018-11-122-11/+11
| | | |
| * | | saucelabs testing with chrome 70 works - locallydotnetCarpenter2018-11-126-95/+115
| | | |
| * | | fixed with eslintdotnetCarpenter2018-11-124-4/+0
| | | |
| * | | added missing saucelabs npm packagesdotnetCarpenter2018-11-122-12/+476
| | | |
| * | | tell travis to run saucelabs testsdotnetCarpenter2018-11-122-6/+6
| | | |
| * | | testing saucelabsdotnetCarpenter2018-11-126-240/+247
| | | |
| * | | cleanup and use chromium on linuxdotnetCarpenter2018-11-114-211/+80
| | | |
* | | | fix bugs in runner, fix importsUlrich-Matthias Schäfer2018-11-264-15/+14
| | | |
* | | | Make package json ready for npm orgUlrich-Matthias Schäfer2018-11-241-1/+2
| | | |
* | | | Moved utils, namespaces, regex... to a subobject of SVG. Renamed SVGArray ↵Ulrich-Matthias Schäfer2018-11-2413-383/+107
| | | | | | | | | | | | | | | | and SVGNumber on export to Array and Number
* | | | Get rid of HTMLNode and Bare in favor of DomUlrich-Matthias Schäfer2018-11-2416-179/+134
| | | | | | | | | | | | | | | | | | | | - 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-235-66/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-225-50/+168
| | | | | | | | | | | | | | | | runners accordingly
* | | | rewrite few lines of adopterUlrich-Matthias Schäfer2018-11-212-23/+18
| | | |
* | | | add default parameter for timeSourceUlrich-Matthias Schäfer2018-11-213-22/+22
| | | |
* | | | add register for insertBefore and insertAfterUlrich-Matthias Schäfer2018-11-204-66/+106
| |_|/ |/| |
* | | rename `doc()` to `root()` and `toDoc()` to `toRoot()` as dicussed in (#932)Ulrich-Matthias Schäfer2018-11-199-38/+39
| | |
* | | renamed `Doc` to `Svg` according to (#932)Ulrich-Matthias Schäfer2018-11-1911-154/+152
| | |
* | | changed image callback according to (#931)Ulrich-Matthias Schäfer2018-11-176-119/+102
| | |
* | | cleanup a few filesUlrich-Matthias Schäfer2018-11-175-22/+17
| |/ |/|
* | remove native() methods, add methods of types directly to elemenetUlrich-Matthias Schäfer2018-11-1211-1049/+950
| |
* | reworked parents so that it is useful now, changelogUlrich-Matthias Schäfer2018-11-124-21/+28
| |
* | ticking off the last checkbox of (#645). return List whenever possibleUlrich-Matthias Schäfer2018-11-124-92/+89
| |
* | Merge pull request #925 from svgdotjs/645-svg-set-is-backUlrich-Matthias Schäfer2018-11-1211-1603/+1769
|\ \ | | | | | | svg set is back (#645)
| * | make List return new lists on method calls, add map to array polyfill so ↵Ulrich-Matthias Schäfer2018-11-128-1568/+1643
| | | | | | | | | | | | that this works, fix runner
| * | change method name, make strings more pleasing to readUlrich-Matthias Schäfer2018-11-122-10/+10
| | |
| * | adds `List` which does bring back `SVG.Set` in an elegant way (#645)Ulrich-Matthias Schäfer2018-11-126-77/+168
|/ /
* | evaluate window and document on access and not on importUlrich-Matthias Schäfer2018-11-1218-200/+94
| |
* | make window and document exchangeable in case they are not globals alreay, ↵Ulrich-Matthias Schäfer2018-11-1127-33/+140
|/ | | | make sure that init functions are chaninable