Skip to content

Instantly share code, notes, and snippets.

⬜⬜⬜⬜⬜📈📜⬜⬜📜⛅⛅📜🌕🌔🌕😓🌔🌔📔🍞👼📔🚚🐻🌛🏡🙏🙇🚧🚧🍹🙇⭐🌛🙇🍶🐝🐝🔏🍲📚👒🌛👒👳📡📡⛺😹📔⛅🎂⬜⬜⬜⬜⬜⬜⬜
⬜⬜⬜⬜⬜🌁📜⬜⬜📜📜📜📜🌕🌔🌓😹😹🌓👼😱👼👼📻⭐⭐🏡🍦🌛🌛⭐🍦🍹🙇📢📢🐑🐝🐝💴📢🙇📚🐝👼👼📱📡👼🚚👼🌓🌕📜⬜⬜⬜⬜⬜⬜
⬜⬜⬜⬜📜⬜⬜📜📜📈📜📜🌕🌔👳😰⛅🌓🍜🌓🌔🙈🙇🙇🙇⭐⭐🍦⭐🌛🍹🍹🍹🙇📢🍶🐑💴🐑🙇🙇🙇🐝👼🍲🐑📚📚📚📚🐝🐝🌓🎂📈⬜⬜⬜⬜⬜
⬜⬜📜📈📜⬜📜📜📜📜📜🌕🌔😱😱⛅⛅🌓🌔😹🚚🍶🙇🙇🙏🙏🏡🚧🍦🙇🙇🙇📢📢🍹🍶🐝🍶🙏🚧🏡🙇🍶🐝📚🙇👒🏡🏡🍹🙇📢📡💸🎂🌁⬜⬜⬜⬜
⬜⬜📜📜📜📜🌕😤👪📜🌕🌔🌓😱🌔🌔🌔👳😹🚚🍶📢🙇🌛🚧🍭🏡⭐👒📢📚🙇🙇🍱🍹🙇🍶🍹🏡💫🙇📢📢🐝📢👒🚧🌿💫🚧🎊🙇🍲🌓😹🎂🌁⬜⬜⬜
⬜⬜😤🌕🎂🌕🌕📜👪🌕🌕👳👼🌔🌕🌔🌓🍞👑🍦🙇🌛🐥🐥🐥🐥🚧🌛📢🙇🍭🚧🍭🍱🍦🌛🌛🏡🚧🌛👒📢📢🐝🔏📢🌿🎄🐡📟🛀🙏📢👳😹🌔📜⬜⬜⬜
⬜⬜⛅⛅📩🎂🌕📜🌕🌕🌕👳🌔🌕🌕😹👼😱📻🍹🚧🐥🐥🚧🚧🐥⭐🐥⭐🚧🏡🏡🍹🍶🍦🍹🚧🏡🐵🙇📢🐝🚌👼🔏📢🎍🎄🎍🍬🐧🐘🙇👼👼🌔🌕📝⬜⬜
⬜📈⛅📩⛅⛅🌕🌕🌕🌕🌔🌔📜📜🌔😹👼🐝⭐⭐🌛🌛🏡🚧🚧🚧🚧🚧🚧💫📺🍹🍶🌛⭐🙏🍹🍹🍹🐑🔏🚌👼👳👼🍮🐧🎼🎓🎓🔪🔎🙏👼👼👼🌓🎂🌁⬜
⬜📝⚾😰🌔🌓🌔🌔🌕🌔😹🌕😤🌕🌔😹👒🍹🌛🌛🐥🚧🚧🚧🚧🚧🚧🚧🚧⭐🌛🌛👒🚧🌛📢🙇⭐🍹🍮🐝🚌👳😹🚌🔏🎏🎓🔝🔝🎓🍢🚧🍶🐝🙇👼🎂🌁⬜
📜⛅🍨📡👼👼😹🌓⛅⛅🌕👪👪🌕🌓👒👒📻👒🌛🚧💫🚧🐥🚧🚧🐥🌛🌛👋👑🌛🌛🌛⭐🍹🏡⭐🌛🍶🌛👑📻👼👼🙈🚧👢🔫🎼🎼🎓🐺👒👒🙇👒⛅📈⬜
@tirams
tirams / gist:1834006
Created February 15, 2012 07:18 — forked from joneath/gist:1680082
Basic Backbone View Jasmine Test
describe("NotesView", function() {
beforeEach(function() {
var notes = new NotesCollection();
spyOn(notes, "fetch");
var view = new NotesView({collection: notes});
});
describe("#initialize", function() {
it("should fetch the notes", function() {
@tirams
tirams / twipsy-view.js
Created February 15, 2012 07:16 — forked from oroce/twipsy-view.js
Twitter Bootstrap Backbone.View
var TwipsyView = Backbone.View.extend({
tagName: "div",
className: "twipsy fade",
events: {
"mouseenter": "show",
"mouseleave": "hide"
},
options: {
enabled: true,
title: "twipsyView",