summaryrefslogtreecommitdiff
path: root/views/favorite-js.php
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2016-12-17 15:30:58 -0800
committerAaron Parecki <aaron@parecki.com>2016-12-17 15:30:58 -0800
commit7d19f61b101ca30debc675018f5509fb28e3de1a (patch)
tree16067e41f86d6aa99045d71795724a1e9d21dd7c /views/favorite-js.php
parentefd82f8ff808f9e9b706e978c04eb77cdb463886 (diff)
remove facebook/instagram stuff
Diffstat (limited to 'views/favorite-js.php')
-rw-r--r--views/favorite-js.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/views/favorite-js.php b/views/favorite-js.php
deleted file mode 100644
index 4ce6dba..0000000
--- a/views/favorite-js.php
+++ /dev/null
@@ -1,33 +0,0 @@
-
-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();