new features
- css improved
- css transitions added
nodes
- double click on a node to remove it
new features:
new features :
(The circles are just for illustrating purposes)
See it live : http://bl.ocks.org/lgersman/5310854
| /* | |
| * track file upload progress using the Deferred returned from the $.ajax call. | |
| * | |
| * See https://github.com/lgersman/jquery.orangevolt-ampere/blob/master/public/lib/ampere/jquery.upload.js | |
| */ | |
| $.upload( form.action, new FormData( myForm)) | |
| .progress( function( progressEvent, upload) { | |
| if( progressEvent.lengthComputable) { | |
| var percent = Math.round( progressEvent.loaded * 100 / progressEvent.total) + '%'; | |
| if( upload) { |
| /* | |
| * track file upload progress using local progress event handler. | |
| * | |
| * See https://github.com/lgersman/jquery.orangevolt-ampere/blob/master/public/lib/ampere/jquery.upload.js | |
| */ | |
| $.ajax({ | |
| processData : false, | |
| contentType : false, | |
| data : new FormData( myForm), | |
| type : 'POST', |
| /* | |
| * track file upload progress using global progress event handler. | |
| * | |
| * See https://github.com/lgersman/jquery.orangevolt-ampere/blob/master/public/lib/ampere/jquery.upload.js | |
| */ | |
| $( document).on( 'ajaxProgress', function( jqEvent, progressEvent, upload, jqXHR) { | |
| if( progressEvent.lengthComputable) { | |
| var percent = Math.round( progressEvent.loaded * 100 / progressEvent.total) + '%'; | |
| if( upload) { |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project name="read-debian-changelog-scripted" default="build"> | |
| <scriptdef name="debian-changelog" language="javascript"> | |
| <attribute name="prefix"/> | |
| <![CDATA[ | |
| importPackage( | |
| java.lang, | |
| java.util, | |
| java.io, |