- Start a new project in git.
- Fork http://github.com/piotrfalba/jquery-floater
- Add jquery-floater as submodules of your project... git submodule add [email protected]:YOU/jquery-floater.git jquery-floater
- Learn a little more about submodules ... http://johnleach.co.uk/words/archives/2008/10/12/323/git-submodules-in-n-easy-steps
- Make changes in Floater, and push them back to your fork.
- Make a pull request to your fork.
$("#container").floater({
duration : 400, - duration of animation
minimumMargin: 20, - minimum margin between floating boxes
maximumMargin: 40, - maximum margin between floating boxes
easing : 'linear', - easing
boxClass : '.box', - floating box selector
fluidHeight : false, - give true for fluid container height
callback : function() {
... - your callback function
}
});