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