diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-12-27 00:08:50 +0000 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-12-27 00:08:50 +0000 |
commit | 87a76f495eb3126e6d3adb5bf675fdb41682a16d (patch) | |
tree | 79b37a3c90955787f28ec4578c7112a44e39c505 /views/favorite-js.php | |
parent | 89afcc13490b7f89ddd1301394acef34682d52b2 (diff) | |
parent | 875a9fd90944eef8bf94f24594c80b9433ec824d (diff) |
Merge branch 'master' of github.com:aaronpk/IndiePost
Diffstat (limited to 'views/favorite-js.php')
-rw-r--r-- | views/favorite-js.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/views/favorite-js.php b/views/favorite-js.php new file mode 100644 index 0000000..4ce6dba --- /dev/null +++ b/views/favorite-js.php @@ -0,0 +1,33 @@ + +console.log("Favoriting URL: <?= $this->url ?>"); + +var css = document.createElement('link'); +css.rel="stylesheet"; +css.type="text/css"; +css.href="<?= Config::$base_url ?>css/favorite.css"; +document.body.appendChild(css); + +function show_star() { + var star = document.createElement('img'); + star.id="quill-star"; + star.src="<?= Config::$base_url ?>images/<?= $this->like_url ? 'star' : 'red-x' ?>.svg"; + star.onload=function() { + setTimeout(function(){ + + document.getElementById('quill-star').classList.add('hidden'); + var el = document.getElementById('quill-star'); + el.parentNode.removeChild(el); + if(typeof favorite_finished == "function") { + favorite_finished(); + } else { + // For now, redirect the user to the URL of their favorite so they can see it posted. + // Might want to change this later. + window.location = "<?= $this->like_url ?>"; + } + + }, 1200); + } + document.body.appendChild(star); +} + +show_star(); |