Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created December 26, 2012 21:02
Show Gist options
  • Save masaru-b-cl/4383144 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/4383144 to your computer and use it in GitHub Desktop.
「Backbone.js:別ファイル定義のViewではelの定義にjQueryオブジェクトを使ってはいけない」のサンプル用hoge.js
/// <reference path="http://code.jquery.com/jquery-1.8.3.js"/>
/// <reference path="backbone-0.9.9.js" />
var Hoge = Backbone.View.extend({
el : $("#hoge"),
initialize: function(){
this.render();
},
render : function(){
this.$el.text("hoge");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment