Skip to content

Instantly share code, notes, and snippets.

View gibbitz's full-sized avatar

Paul Fox gibbitz

  • gibbitz studios
  • NJ, USA
View GitHub Profile
@gibbitz
gibbitz / usage.js
Last active March 24, 2016 23:25 — forked from bshack/usage.js
simple js view for being extended
(function() {
'use strict';
const View = require('./viewBase.js');
new View({
el: document.querySelector('a'),
model: {'foo': 'bar'}
});