Skip to content

Commit

Permalink
Update 2016-01-16T15:44:59.008Z
Browse files Browse the repository at this point in the history
  • Loading branch information
timaschew committed Jan 16, 2016
1 parent cf49b10 commit 23ab888
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 38 deletions.
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
NProgress.set(0.0);
var req = new XMLHttpRequest();
req.addEventListener("progress", function(event) {
var percentComplete = event.loaded / (event.total||2402881);
var percentComplete = event.loaded / (event.total||2465295);
NProgress.set(percentComplete);
}, false);
req.addEventListener("load", function(event) {
Expand All @@ -58,10 +58,12 @@
woopra.config({
domain: 'app.cherry-notes.com'
});
// woopra.identify({
// name: "John Doe"
// email: "joh@doe.com",
// });
var name = localStorage.getItem('name')
if (name != null) {
woopra.identify({
name: name
});
}
woopra.track();
}
</script>
Expand Down
Loading

0 comments on commit 23ab888

Please sign in to comment.