View README.md

new features

  • css improved
  • css transitions added

nodes

  • double click on a node to remove it
View README.md
  • Click into the drawing area to start the selection frame
  • move the mouse to resize the selection frame
  • Release the mouse button to resize the selection frame
  • circles are draggable
  • circles can be selected (multiple selections possible by pressing CTRL while clicking a circle)
  • the selection frame selects all circles within the frame (by pressing CTRL the selected circles will be appended to current selection)
  • multiple selected circles will be dragged simultaneous

new features:

View README.md
  • Click into the drawing area to start the selection frame
  • move the mouse to resize the selection frame
  • Release the mouse button to resize the selection frame

new features :

  • circles are draggable
  • circles can be selected (multiple selections possible by pressing CTRL while clicking a circle)
  • the selection frame selects all circles within the frame (by pressing CTRL the selected circles will be appended to current selection)
  • multiple selected circles will be dragged simultaneous
View README.md
  • Click into the drawing area to start the selection frame
  • move the mouse to resize the selection frame
  • Release the mouse button to resize the selection frame

(The circles are just for illustrating purposes)

See it live : http://bl.ocks.org/lgersman/5310854

View jquery_ajax_file_upload.js
/*
* 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) {
View jquery_ajax_file_upload_3.js
/*
* 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',
View jquery_ajax_file_upload_2.js
/*
* 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) {
View gist:2575160
<?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,