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

Version Path
c2-0.1.7 public/javascripts/c2/informant/application.js
c2-0.1.6 public/javascripts/c2/informant/application.js
c2-0.1.5 public/javascripts/c2/informant/application.js
c2-0.1.4 public/javascripts/c2/informant/application.js
c2-0.1.3 public/javascripts/c2/informant/application.js