aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add Gitter badgeThe Gitter Badger2017-04-131-0/+2
|
* use strict removed from umd wrapper by virtue of being ugly and assuring ↵dotnetCarpenter2017-04-121-1/+0
| | | | fuzzyma's sleep at night
* fix svg.js.d.ts (#644 #648)Ulrich-Matthias Schäfer2017-04-121-5/+13
|
* fixed link style to tags and update about component.jsondotnetCarpenter2017-04-111-3/+8
|
* remove component.json as the project it facilitate is abandon - close #652dotnetCarpenter2017-04-111-11/+0
|
* update component to 2.5.2 toodotnetCarpenter2017-04-111-2/+2
|
* skip coverage for UMDdotnetCarpenter2017-04-113-2/+6
|
* change benchmark svg.js identifier to 2.5.2dotnetCarpenter2017-04-114-10/+10
|
* patch release for strict mode2.5.2dotnetCarpenter2017-04-114-7/+18
|
* clean up and added changes to CHANGELOGdotnetCarpenter2017-04-115-23/+30
|
* namespace not declared in the Event moduledotnetCarpenter2017-04-111-1/+1
|
* fixed bbox not declared in SVG.Box.transformdotnetCarpenter2017-04-112-4/+5
|
* fixed len being undeclareddotnetCarpenter2017-04-111-1/+1
|
* changing to strict mode - some failures occurdotnetCarpenter2017-04-114-7/+11
|
* re-added all specs from the spec/spec/ folderdotnetCarpenter2017-04-111-35/+36
|
* fix passUlrich-Matthias Schäfer2017-04-091-1/+1
|
* make last test passing in svg docsUlrich-Matthias Schäfer2017-04-094-16/+18
|
* Updated CHANGELOGwout2017-04-077-11/+40
|
* change my email from gmail to svgjs.comdotnetCarpenter2017-03-311-1/+1
|
* clear does not remove parser anymoreUlrich-Matthias Schäfer2017-03-2913-127/+201
| | | | make test work in svg documents
* make path parsing even fasterUlrich-Matthias Schäfer2017-03-273-161/+180
|
* bump 2.5.12.5.1Ulrich-Matthias Schäfer2017-03-274-7/+7
|
* relax testUlrich-Matthias Schäfer2017-03-275-30/+3
|
* Speed improvements for plot() on path, polygon and poly line elements.wout2017-03-247-28/+123
|
* fixed `SVG.PathArray.parse` that did not correctly parsed flat arraysUlrich-Matthias Schäfer2017-03-246-10/+27
|
* onclick events are now bound with SVG.on, prefixed globals, relax tests to ↵Ulrich-Matthias Schäfer2017-03-2125-217/+309
| | | | work with svgdom, image loading uses eveents now, can now run jasmine tessts with svgdom when jasmine globally available
* typescript definitions updated, minor fix in TransformationsUlrich-Matthias Schäfer2017-03-194-149/+196
|
* missed another oneUlrich-Matthias Schäfer2017-03-193-4/+4
|
* missed oneUlrich-Matthias Schäfer2017-03-183-4/+4
|
* prefix globals with window so window can be injected properlyUlrich-Matthias Schäfer2017-03-187-16/+16
|
* fixing testUlrich-Matthias Schäfer2017-03-161-1/+1
|
* fixes bug in style when css string ends with ;Ulrich-Matthias Schäfer2017-03-163-10/+14
|
* Typescript definitions edits: element.stop, container.polyline(), select(): ↵showdep2017-03-151-10/+10
| | | | | Set, animation.scale() (#631, #635) Thx @showdep
* make more tests pass in IEUlrich-Matthias Schäfer2017-03-157-43/+56
|
* move most regexe to SVG.regex, fix matrix constructor for string argumentUlrich-Matthias Schäfer2017-03-1410-57/+31
|
* update link to travis-cidotnetCarpenter2017-03-141-1/+1
|
* point release 2.5.0 to our tagged releasedotnetCarpenter2017-03-141-1/+1
|
* added rotate, skew, scale and translate to typings documentation as written ↵dotnetCarpenter2017-03-101-2/+6
| | | | in our documentation (http://svgjs.com/manipulating/transforms/)
* Release 2.5.02.5.0Ulrich-Matthias Schäfer2017-03-104-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ### Added - added a plot and array method to `SVG.TextPath` (#582) - added `clone()` method to `SVG.Array/PointArray/PathArray` (#590) - added `font()` method to `SVG.Tspan` - added `SVG.Box()` - added `transform()` method to boxes - added `event()` to `SVG.Element` to retrieve the event that was fired last on the element (#550) ### Changed - changed CHANGELOG to follow the conventions described in [“Keep a CHANGELOG”](http://keepachangelog.com) (#578) - make the method plot a getter when no parameter is passed for `SVG.Polyline`,`SVG.Polygon`, `SVG.Line`, `SVG.Path` (related #547) - allow `SVG.PointArray` to be passed flat array - change the regexp `SVG.PointArray` use to parse string to allow more flexibility in the way spaces and commas can be used - allow `plot` to be called with 4 parameters when animating an `SVG.Line` - relative value for `SVG.Number` are now calculated in its `morph` method (related #547) - clean up the implementation of the `initAnimation` method of the FX module (#547, #552, #584) - deprecated `.tbox()`. `.tbox()` now map to `.rbox()`. If you are using `.tbox()`, you can substitute it with `.rbox()` (#594, #602) - all boxes now accept 4 values or an object on creation - `el.rbox()` now always returns the right boxes in screen coordinates and has an additional paramater to transform the box into other coordinate systems - `font()` method can now be used like `attr()` method (#620) - events are now cancelable by default (#550) ### Fixed - fixed a bug in the plain morphing part of `SVG.MorphObj` that is in the FX module - fixed bug which produces an error when removing an event from a node which was formerly removed with a global `off()` (#518) - fixed a bug in `size()` for poly elements when their height/width is zero (#505) - viewbox now also accepts strings and arrays as constructor arguments - `SVG.Array` now accepts a comma seperated string and returns array of numbers instead of strings - `SVG.Matrix` now accepts an array as input - `SVG.Element.matrix()` now accepts also 6 values - `dx()/dy()` now accepts percentage values, too but only if the value on the element is already percentage - `flip()` now flips on both axis when no parameter is passed - fixed bug with `documentElement.contains()` in IE - fixed offset produced by svg parser (#553) - fixed a bug with clone which didnt copy over dom data (#621)
* fix bug in box when box with top and left is given which is 0 (#632)Ulrich-Matthias Schäfer2017-03-093-6/+6
|
* updated changelogUlrich-Matthias Schäfer2017-03-091-0/+1
|
* fixed a bug with clone which didnt copy over dom data (#621)Ulrich-Matthias Schäfer2017-03-094-7/+20
|
* update changelogUlrich-Matthias Schäfer2017-03-091-0/+2
|
* make events cancelable by default (#550) - version 5Ulrich-Matthias Schäfer2017-03-095-25/+48
|
* start the animation when after(All)/during(All) is called (#583)Ulrich-Matthias Schäfer2017-03-094-22/+38
|
* Fix offset produced by svg parser (#553)Ulrich-Matthias Schäfer2017-03-085-5/+6
|
* update changelogUlrich-Matthias Schäfer2017-03-081-0/+1
|
* add ability to use `font()` method like `attr()` method (#620)Ulrich-Matthias Schäfer2017-03-084-28/+40
|
* update changelogUlrich-Matthias Schäfer2017-03-081-0/+1
|
* fix documet.contains bug in IE (#612)Ulrich-Matthias Schäfer2017-03-083-8/+26
|