Skip to content
Snippets Groups Projects
Select Git revision
  • bd85422d2beb8b14e617839b7d05e7306df83edc
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

DS1307.h

Blame
  • PhysicsMenuView.js 566 B
    /**
     * Created by aghassaei on 2/25/15.
     */
    
    PhysicsMenuView = Backbone.View.extend({
    
        el: "#menuContent",
    
        events: {
        },
    
        initialize: function(options){
    
            _.bindAll(this, "render");
        },
    
        render: function(){
            if (this.model.get("currentTab") != "physics") return;
            this.$el.html(this.template());
        },
    
        template: _.template('\
            world physics: gravity, global forces\
            <br/><br/>\
            part connection stiffness\
            <br/><br/>\
            ground/fixed/boundary conditions definition\
            ')
    
    });