Sha256: 1d98259b782109a5befef2df17ebd742dc04d1c4e0252f8539bee28573cd69a0
Contents?: true
Size: 613 Bytes
Versions: 5
Compression:
Stored size: 613 Bytes
Contents
var Informant = { init: function() { Informant.loadTemplates(); Informant.App = new Informant.AppController(); Backbone.history.start(); }, JST: {}, loadTemplates: function() { $('[type="text/js-template"]').each(function() { Informant.JST[$(this).data('template')] = _.template($(this).html()); }); } }; var Locus = { label: 'Users', path: 'users', scopes: 'ScopeList', attributes: 'AttributeList' }; var Attribute = { label: 'fu', template: 'string' }; var Scope = { label: 'Active', path: 'active', entries: 'EntryList' }; var Entry = { fu: 'bar', };
Version data entries
5 entries across 5 versions & 1 rubygems