Sha256: 3c6b7e30e84708f15e598efd15b239fafd7518f5db49df9707f70050614c747e

Contents?: true

Size: 269 Bytes

Versions: 3

Compression:

Stored size: 269 Bytes

Contents

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

$(document).ready(function() {
  app.init();
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
edge_framework-1.2.9 template/base/assets/js/app.js
edge_framework-1.2.7 template/base/assets/js/app.js
edge_framework-1.2.6 template/base/assets/js/app.js