diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-12-26 14:57:31 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-12-26 14:57:31 -0800 |
commit | 8be498a324954f9d5792ca921b7364f53ff4085f (patch) | |
tree | c0bec4dc8a617ab949903e63c18594e7b34b99f9 /views/liked-js.php | |
parent | 430609b9005bb93ce2c6b21405cea0ede2b17a9d (diff) |
new "favorite" form with bookmarklet
* disable facebook liking for now since it was getting complicated
* new page for creating a favorite, can pass in a URL parameter too
* bookmarklet code added to the "favorite" page
Diffstat (limited to 'views/liked-js.php')
-rw-r--r-- | views/liked-js.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/views/liked-js.php b/views/liked-js.php deleted file mode 100644 index 80b62ac..0000000 --- a/views/liked-js.php +++ /dev/null @@ -1,22 +0,0 @@ -<?= $this->facebook_id ? partial('partials/fb-script') : '' ?> - -console.log("Favoriting URL: <?= $this->url ?>"); - -var star = document.createElement('img'); -star.id="quill-star"; -star.src="http://quill.dev/images/<?= $this->like_url ? 'star' : 'red-x' ?>.svg"; -document.body.appendChild(star); - -var css = document.createElement('link'); -css.rel="stylesheet"; -css.type="text/css"; -css.href="http://quill.dev/css/favorite.css"; -document.body.appendChild(css); - -setTimeout(function(){ - - document.getElementById('quill-star').classList.add('hidden'); - var el = document.getElementById('quill-star'); - el.parentNode.removeChild(el); - -}, 1200); |