This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <link rel="stylesheet" href="//punchtab.github.io/Punchdation/static/css/fonts.css" /> | |
| <style> | |
| body { | |
| font-family: "Bariol"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ | |
| var disqus_shortname = '<disqus_shortname>'; // required: replace example with your forum shortname | |
| /* * * DON'T EDIT BELOW THIS LINE * * */ | |
| (function() { | |
| var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; | |
| dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; | |
| (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); | |
| })(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <link rel="stylesheet" href="//punchtab.github.io/Punchdation/static/css/punchdation/fonts.css" /> | |
| <style> | |
| body { | |
| font-family: "Bariol"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <link rel="stylesheet" href="//punchtab.github.io/Punchdation/static/css/punchdation/fonts.css" /> | |
| <style> | |
| body { | |
| font-family: "Bariol"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" charset="utf-8"> | |
| window.ptReady = window.ptReady || []; | |
| window.ptReady.push(function () { | |
| PT.event.bind("getsatisfaction.topic.reply", function () { | |
| _ptq.push(["reply", {points: 25}]); | |
| }); | |
| PT.event.bind("getsatisfaction.topic.question", function () { | |
| _ptq.push(["ask", {points: 25}]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form action="/api/v1/scanning/upload" method="POST" name="scanning" enctype="multipart/form-data"> | |
| <input type="hidden" name="key" value="<YOUR PUBLISHER KEY>" /> | |
| <input type="file" name="image" accept="image/*" capture="camera" id="image"> | |
| <button type="submit" style="display: none;">UPLOAD RECEIPT</button> | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.ptReady = window.ptReady || []; | |
| window.ptReady.push(function () { | |
| PT.event.bind("loyalty.earned", function (message) { | |
| // message.activities : array of activities | |
| // message.points : sum of points for each activities | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var hero = document.getElementById("header"), | |
| heroHeight = $(hero).outerHeight(); | |
| function updateScroll() { | |
| scrollAmount = $(window).scrollTop(); | |
| if (scrollAmount <= heroHeight) { | |
| hero.style['-webkit-transform'] = 'translate3d(0, ' + (scrollAmount / 2) + 'px, 0)'; | |
| } else if (scrollAmount <= heroHeight) { | |
| $(self).css('top', (scrollAmount / 2) + 'px'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #rwd_tab { | |
| display: none !important; | |
| } | |
| #rwd_tab.shown { | |
| display: block !important; | |
| } |