Browse Source

add missing tracking.js to #128

master
Philipp Hancke 10 years ago
parent
commit
092e8df148
1 changed files with 13 additions and 0 deletions
  1. 13
    0
      tracking.js

+ 13
- 0
tracking.js View File

@@ -0,0 +1,13 @@
1
+(function () {
2
+
3
+function trackUsage(eventname, obj) {
4
+    //console.log('track', eventname, obj);
5
+    // implement your own tracking mechanism here
6
+}
7
+if (typeof exports !== 'undefined') {
8
+    module.exports = trackUsage;
9
+} else {
10
+    window.trackUsage = trackUsage;
11
+}
12
+
13
+})();

Loading…
Cancel
Save