add missing tracking.js to #128

pull/132/head
Philipp Hancke 11 years ago
parent d0d7697434
commit 092e8df148
  1. 13
      tracking.js

@ -0,0 +1,13 @@
(function () {
function trackUsage(eventname, obj) {
//console.log('track', eventname, obj);
// implement your own tracking mechanism here
}
if (typeof exports !== 'undefined') {
module.exports = trackUsage;
} else {
window.trackUsage = trackUsage;
}
})();
Loading…
Cancel
Save