Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Merge pull request #808 from svgdotjs/events-memory-leak | Ulrich-Matthias Schäfer | 2018-02-28 | 5 | -132/+128 | |
|\ \ \ | |_|/ |/| | | proposal for #807, includes #550, `SVG.off()` multiple events and option argument | |||||
| * | | updated changelog | Ulrich-Matthias Schäfer | 2018-02-27 | 1 | -1/+2 | |
| | | | ||||||
| * | | search and replace replaced to much | Ulrich-Matthias Schäfer | 2018-02-27 | 1 | -2/+2 | |
| | | | ||||||
| * | | found the error whereelse. go back to version before with applied fix | Ulrich-Matthias Schäfer | 2018-02-27 | 1 | -13/+9 | |
| | | | ||||||
| * | | fixed error that listener was strangely defined even if function was called ↵ | Ulrich-Matthias Schäfer | 2018-02-27 | 2 | -63/+69 | |
| | | | | | | | | | | | | without | |||||
| * | | fix errors found by linter (jeah it works!) | Ulrich-Matthias Schäfer | 2018-02-27 | 2 | -12/+12 | |
| | | | ||||||
| * | | proposal for #807, includes #550, allow multiple events for `SVG.off()` and ↵ | Ulrich-Matthias Schäfer | 2018-02-27 | 3 | -80/+73 | |
|/ / | | | | | | | add option argument | |||||
* | | Merge pull request #823 from svgdotjs/800-add-linter | saivan | 2018-02-27 | 58 | -7085/+16418 | |
|\ \ | |/ |/| | Added the standard linter | |||||
| * | Built the final linted file | Saivan | 2018-02-27 | 1 | -12/+50 | |
| | | ||||||
| * | Fixed a few hanging issues with the linter | Saivan | 2018-02-27 | 6 | -16/+54 | |
| | | | | | | | | | | This commit fixes a few typesetting issues that probably resulted from the automated linting process | |||||
| * | Forgot to add standard to the package-json doh | Saivan | 2018-02-27 | 2 | -0/+9170 | |
| | | ||||||
| * | So the standard linter is operational and our code is compliant | Saivan | 2018-02-27 | 14 | -101/+114 | |
| | | | | | | | | | | | | This commit completes the compliance of our code with the standard linter. It is now building correctly and error messages are displayed when somebody tries to build bad code! | |||||
| * | Actually added the linter to gulp and fixed most errors | Saivan | 2018-02-27 | 25 | -170/+218 | |
| | | | | | | | | | | | | This commit fixes most of the errors raised by standard. There is still a strange call error, but that will be the focus of the next commit | |||||
| * | All files now loosely abide by standard linting | Saivan | 2018-02-27 | 23 | -1051/+1081 | |
| | | | | | | | | | | | | This commit completes the rest of the files, making sure they are in the standard linting format. Next we will add the linter to the build process of our application. | |||||
| * | The first half of the library complies with Standard linting | Saivan | 2018-02-27 | 34 | -6433/+6429 | |
|/ | | | | | | This commit reformats the code so that it complies with the standard linting style. Its currently a work in progress, but it is meant to pave the way for linting in the build process | |||||
* | make sure to remove event handlers from temporary image (#805) | Ulrich-Matthias Schäfer | 2018-02-07 | 3 | -7/+15 | |
| | ||||||
* | remove test for `show()` | Ulrich-Matthias Schäfer | 2018-02-06 | 1 | -7/+0 | |
| | ||||||
* | remove `SVG.A.show()` to resolve nameclash (fix #802) | Ulrich-Matthias Schäfer | 2018-02-06 | 3 | -10/+2 | |
| | ||||||
* | improved SVG.on and el.on (#727) | Ulrich-Matthias Schäfer | 2017-07-28 | 5 | -300/+85 | |
| | | | | | - `SVG.on()` calls the listener in the context of the passed object. el.on always uses the svg.js object as context - `SVG.on()` and `el.on()` now accepts multiple comma or space seperated events e.g. "mousedown, foo bar" (#727) | |||||
* | The dom is checked for an svgjs:data attribute which is imported when ↵ | Ulrich-Matthias Schäfer | 2017-07-28 | 5 | -17/+18 | |
| | | | | creating an element | |||||
* | fix bug where defs returns nothing | Ulrich-Matthias Schäfer | 2017-07-25 | 3 | -4/+4 | |
| | ||||||
* | add new default constructor (#714) | Ulrich-Matthias Schäfer | 2017-07-25 | 15 | -136/+104 | |
| | ||||||
* | Lots of breaking changes. Read below! (#646, #716) | Ulrich-Matthias Schäfer | 2017-07-25 | 27 | -267/+475 | |
| | | | | | | | | | | - added `SVG.HTMLNode` which is the object wrapped around html nodes to put something in them - moved `defs()` method from `SVG.Parent` to `SVG.Element` - `SVG()` can be called with css selector, node or svg string, now. Without an argument it creates a new `SVG.Doc()` (#646) - `add()`, `put()`, `addTo()`, `putIn()` now excepts all arguments accepted by `SVG()` - `SVG.Nested` is not `overflow:visible` by default - all `SVG.*` objects now can have a node as parameter when constructing - `SVG()` does not set a default size anymore | |||||
* | use `children` instead of `childNodes` (#710), renamed `previous()` to `prev()` | Ulrich-Matthias Schäfer | 2017-07-10 | 10 | -49/+47 | |
| | ||||||
* | renamed `fill()` method on `SVG.Gradient` and `SVG.Pattern` to `url()` (#708) | Ulrich-Matthias Schäfer | 2017-07-07 | 7 | -14/+15 | |
| | ||||||
* | renamed `SVG.Stop` constructor `at()` on `SVG.Gradient` to `stop()` (#707) | Ulrich-Matthias Schäfer | 2017-07-07 | 6 | -37/+38 | |
| | ||||||
* | reworked textPath (see #705) | Ulrich-Matthias Schäfer | 2017-07-07 | 8 | -114/+168 | |
| | ||||||
* | Merge branch 'master' into 3.0.0 | Ulrich-Matthias Schäfer | 2017-07-06 | 21 | -1246/+2711 | |
|\ | | | | | | | | | | | | | | | Conflicts (All resolved): dist/svg.js dist/svg.min.js package.json src/doc.js | |||||
| * | fix array values which were not animated (#698) | Ulrich-Matthias Schäfer | 2017-07-06 | 3 | -2/+6 | |
| | | ||||||
| * | Merge pull request #686 from maltefl/typescript_fixes | Ulrich-Matthias Schäfer | 2017-06-06 | 2 | -6/+6 | |
| |\ | | | | | | | TypeScript fixes and remove unused parameter | |||||
| | * | Syntax fixes in TypeScript declaration file | Malte Fastrup Lyngsø | 2017-06-06 | 1 | -5/+5 | |
| | | | ||||||
| | * | Removed unused parameter spof of function spof() | Malte Fastrup Lyngsø | 2017-06-06 | 1 | -1/+1 | |
| |/ | ||||||
| * | bump 2.6.22.6.2 | Ulrich-Matthias Schäfer | 2017-06-05 | 4 | -5533/+5532 | |
| | | ||||||
| * | changelog, gitignore | Ulrich-Matthias Schäfer | 2017-06-04 | 2 | -0/+2 | |
| | | ||||||
| * | Update CHANGELOG and rebuild the lib | Rémi Tétreault | 2017-05-27 | 4 | -6/+41 | |
| | | ||||||
| * | Fixed links to releases | Jon Ege Ronnenberg | 2017-05-27 | 1 | -11/+14 | |
| | | ||||||
| * | Merge pull request #676 from jcorentin/fix-height-width-animation | Rémi Tétreault | 2017-05-26 | 2 | -0/+24 | |
| |\ | | | | | | | Make width() and height() setters animatable | |||||
| | * | Add unit tests for width & height animation | Corentin J | 2017-05-11 | 1 | -0/+16 | |
| | | | ||||||
| | * | Add animatable width & height | Corentin J | 2017-05-11 | 1 | -0/+8 | |
| | | | ||||||
| * | | Add missing type definitions to svg.js.d.ts (#680) | Youngrok Kim | 2017-05-20 | 1 | -4/+8 | |
| | | | ||||||
| * | | fixed `SVG.FX.step` so that the animation doesn't stop if an afterAll ↵ | Rémi Tétreault | 2017-05-14 | 5 | -17/+43 | |
| |/ | | | | | | | callback call animate (#677) | |||||
| * | revert the previous commit | Rémi Tétreault | 2017-05-02 | 5 | -151/+42 | |
| | | | | | | | | remove the typeof check in the initialisation of SVG.Matrix | |||||
| * | allow SVG.Matrix to be passed SVG.Number | Rémi Tétreault | 2017-05-01 | 5 | -11/+140 | |
| | | ||||||
| * | Adds the intended functionality to call animate functions with multiple ↵ | Ulrich-Matthias Schäfer | 2017-04-30 | 3 | -12/+31 | |
| | | | | | | | | | | parameter (#671) e.g. `el.animate().zoom(level, point)` | |||||
| * | fixed `SVG.FX.once` so that it add its callback on the last situation ↵ | Rémi Tétreault | 2017-04-30 | 5 | -5489/+5499 | |
| | | | | | | | | instead of the current one | |||||
| * | format fixture svg and remove redundant css (use fixture.css instead) | dotnetCarpenter | 2017-04-27 | 2 | -38/+32 | |
| | | ||||||
| * | move fixtures to the fixtures folder | dotnetCarpenter | 2017-04-27 | 4 | -4/+4 | |
| | | ||||||
| * | updated jasmine to 2.6.0 and added @RmiTtro as maintainer | dotnetCarpenter | 2017-04-26 | 9 | -1141/+2460 | |
| | | ||||||
| * | load correct benchmarks again2.6.1 | Ulrich-Matthias Schäfer | 2017-04-25 | 1 | -3/+2 | |
| | | ||||||
| * | fixed a bug in path parser which made it stop parsing when hitting z command ↵ | Ulrich-Matthias Schäfer | 2017-04-25 | 7 | -11/+17 | |
| | | | | | | | | (#665) |