Skip to content
Snippets Groups Projects
Select Git revision
  • deb6fce7bc7c897242eccd02bf9da5e5191efb58
  • 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

BootloaderAPI.c

Blame
  • ScriptMenuView.js 436 B
    /**
     * Created by aghassaei on 1/26/15.
     */
    
    ScriptMenuView = Backbone.View.extend({
    
        el: "#menuContent",
    
        events: {
        },
    
        initialize: function(options){
    
            _.bindAll(this, "render");
        },
    
        render: function(){
            if (this.model.get("currentTab") != "script") return;
            this.$el.html(this.template());
        },
    
        template: _.template('\
            some kind of scripting functionality?\
            ')
    
    });