Sha256: e818ff1999697de6e6fc2831f02c1b36f128bc90aeda35816146f4cc3ccdf748

Contents?: true

Size: 325 Bytes

Versions: 9

Compression:

Stored size: 325 Bytes

Contents

var app = {
  init: function() {
    $(".something").on("click", this.doSomething);
    $(".something-2").on("click", this.doSomething2);
  },
  doSomething: function(e) {},
  doSomething2: function(e) {},
};



function start() {
  app.init();
}

$(document).ready(start);
$(document).on("page:load", start);

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
edge_framework-2.0.0.a template/base/assets/js/app.js
edge_framework-1.4.1 template/base/assets/js/app.js
edge_framework-1.4.0 template/base/assets/js/app.js
edge_framework-1.3.6 template/base/assets/js/app.js
edge_framework-1.3.5 template/base/assets/js/app.js
edge_framework-1.3.3 template/base/assets/js/app.js
edge_framework-1.3.2 template/base/assets/js/app.js
edge_framework-1.3.1 template/base/assets/js/app.js
edge_framework-1.3.0 template/base/assets/js/app.js