Go to file
Michael Tiller b54624a11b Adding a way to specify how attributes are bound on Set objects
This commit is backward compatible with previous versions but adds a new option for handling
attribute applications on Set objects.  The normal behavior (of applying the attribute
to all elements in the set) is preserved unless the developer explicitly defines how
the attribute should be treated.  This relatively simply change allows three useful
cases.  First, the user can specify that an attribute to applied to a specific element.
Second, it allows pseudo-attributes to be defined and applied to a specific element.  Finally,
and most powerfully, it allows the user to specify a function to be called when a given
attribute is set.  That function can, of course, apply the attribute to a number of
different elements.

This commit includes test cases for all these cases.
2014-03-23 08:59:50 -04:00
demos banner ad demo added 2014-02-12 10:33:52 -08:00
dist Merge 2013-12-23 12:27:58 +11:00
doc Merge 2013-12-23 12:27:58 +11:00
src Adding a way to specify how attributes are bound on Set objects 2014-03-23 08:59:50 -04:00
test Adding a way to specify how attributes are bound on Set objects 2014-03-23 08:59:50 -04:00
.gitignore Fix for bug #24 2013-10-14 23:02:50 +11:00
.gitmodules Moving submodules (part 1) 2013-08-16 11:15:34 +10:00
CONTRIBUTING Added contributing file 2013-08-16 14:50:35 +10:00
Gruntfile.js Moved docs from dist/ to doc/ 2013-10-29 12:13:58 +11:00
LICENSE Add License 2013-08-15 18:31:27 +10:00
NOTICE Fix for bug #25 & #110 2013-11-18 23:02:11 +11:00
README.md Moved docs from dist/ to doc/ 2013-10-29 12:13:58 +11:00
bower.json Bumped up version 2013-10-25 15:53:28 -07:00
component.json Bumped up version 2013-10-25 15:53:28 -07:00
dr.json Updated to the new version of dr.js. Now with templates 2013-11-18 11:16:23 +11:00
package.json Added support for text path 2013-12-23 12:26:40 +11:00
template.dot Fix for #122 and added Set.remove() method 2013-11-20 11:42:25 +11:00

README.md

Snap.svg

A JavaScript SVG library for the modern web. Learn more at snapsvg.io.

Follow us on Twitter.

Learn

Use

In your HTML file, load simply by: <script src="snap.svg-min.js"></script> No other scripts are needed. Both the minified and uncompressed (for development) versions are in the /dist folder.

Build

Snap.svg uses Grunt to build.

  • Open the terminal from the Snap.svg directory:

      cd Snap.svg
    
  • Install its command line interface (CLI) globally:

      npm install -g grunt-cli
    

*You might need to use sudo npm, depending on your configuration.

  • Install dependencies with npm:

      npm install
    

*Snap.svg uses Grunt 0.4.0. You might want to read more on their website if you havent upgraded since a lot has changed.

  • Type grunt in the command line to build the files.
  • The results will be built into the release folder.
  • Alternatively type grunt watch to have the build run automatically when you make changes to source files.

Contribute

  • Fill out the CLA.

  • Fork the repo.

  • Create a branch:

      git checkout -b my_branch
    
  • Add your changes.

  • Commit your changes:

      git commit -am "Added some awesome stuff"
    
  • Push your branch:

      git push origin my_branch
    
  • Make a pull request to dev branch.

Note: Pull requests to other branches than dev or without filled CLA wouldnt be accepted.