Skip to content

Instantly share code, notes, and snippets.

View deitch's full-sized avatar

Avi Deitcher deitch

View GitHub Profile
@deitch
deitch / backbone-with-wizard.js
Created September 3, 2013 05:14
Backbone with jquery.wizard
NewItemView = Backbone.View.extend({
el: "div#newitm",
events: {
"click input#clicktocreate-button":"createItem"
},
initialize: function() {
var that = this;
this.subitemView = new SubItemView({el:"div#newitem div.item-list"});
this.$el.wizard({
beforeSelect: function(event,state) {
@deitch
deitch / testjs
Created January 1, 2012 10:09
Test js
/*
* jsTreeGrid 0.98
* http://jsorm.com/
*
* This plugin handles adding a grid to a tree to display additional data
*
* Dual licensed under the MIT and GPL licenses (same as jQuery):
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*