Skip to content

Instantly share code, notes, and snippets.

View absolux's full-sized avatar
🎯
Focusing

Abdessamad MOUHASSINE absolux

🎯
Focusing
View GitHub Profile
@absolux
absolux / application.js
Last active November 23, 2015 00:52 — forked from caleywoods/application.coffee
Backbone & FullCalendar application
$(function(){
var Event = Backbone.Model.extend();
var Events = Backbone.Collection.extend({
model: Event,
url: 'events'
});
var EventsView = Backbone.View.extend({
initialize: function(){