add missing tracking.js to #128

This commit is contained in:
Philipp Hancke 2014-09-13 21:32:44 +02:00
parent d0d7697434
commit 092e8df148
1 changed files with 13 additions and 0 deletions

13
tracking.js Normal file
View File

@ -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;
}
})();