Skip to content

Commit

Permalink
Added cache busting to page requests. Resolves #39.
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanHavoc committed Aug 3, 2016
1 parent ca6caa3 commit 19980ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _template/app/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ new Vue({
_this.open_group = null;
_this.open_nav = false;

_this.$http.get(page.file).then(function (response) {
_this.$http.get(page.file + '?cb=' + new Date()).then(function (response) {
_this.$set('active_page.markup', marked(response.data));
});

Expand Down
Loading

0 comments on commit 19980ed

Please sign in to comment.