Skip to content

Instantly share code, notes, and snippets.

View techhahn's full-sized avatar

Pritesh Panjiker techhahn

View GitHub Profile
require.config({
paths: {
jquery: 'lib/jquery',
backbone: 'lib/backbone',
underscore: 'lib/underscore'
}
})
define(['jquery', 'underscore', 'backbone', 'text!templates/editprofile.html'], function($, _, backbone, editProfileTemplate) {
var editProfile = Backbone.View.extend({
el: $('#renderarea'),
@techhahn
techhahn / The router
Last active December 13, 2015 17:18
Backbone
require.config({
paths: {
jquery: 'lib/jquery',
backbone: 'lib/backbone',
underscore: 'lib/underscore',
user: 'app/models/user'
},
shims: {
'backbone': {
deps: ['jquery', 'underscore'],