Skip to content

Commit

Permalink
Update 2016-01-16T17:16:20.097Z
Browse files Browse the repository at this point in the history
  • Loading branch information
timaschew committed Jan 16, 2016
1 parent ae59d54 commit c6d0060
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
NProgress.set(0.0);
var req = new XMLHttpRequest();
req.addEventListener("progress", function(event) {
var percentComplete = event.loaded / (event.total||2465345);
var percentComplete = event.loaded / (event.total||2466417);
NProgress.set(percentComplete);
}, false);
req.addEventListener("load", function(event) {
Expand All @@ -59,10 +59,10 @@
woopra.config({
domain: 'app.cherry-notes.com'
});
var name = localStorage.getItem('name')
if (name != null) {
var id = localStorage.getItem('id')
if (id != null) {
woopra.identify({
name: name
email: id
});
}
woopra.track();
Expand Down
Loading

0 comments on commit c6d0060

Please sign in to comment.