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
| Framework CSS | |
| @import url(//apps.wildfireapp.com/consumer/scorch/v1/scorch.css); | |
| FitVids | |
| <script src="//apps.wildfireapp.com/consumer/scorch/v1/fitvids.js"></script> | |
| Enquire | |
| <script src="//apps.wildfireapp.com/consumer/scorch/v1/enquire.js"></script> |
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
| // setup comments for mobile width | |
| var w = screen.availWidth; | |
| w = w < 320 ? 320:w; | |
| if((typeof window.orientation) == 'number' && w <= 480) { | |
| $(document.getElementsByTagName('fb:comments')).add('.fb-comments').each(function () { | |
| this.setAttribute('width', w); | |
| this.setAttribute('data-width', w); | |
| }); | |
| }; |
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
| $(document).bind('didRefreshWidgetContent', function () { | |
| top.location.href = 'http://google.com/'; // Change the URL | |
| }); |
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
| .entry-body { | |
| -webkit-animation-fill-mode:both; | |
| -moz-animation-fill-mode:both; | |
| -ms-animation-fill-mode:both; | |
| -o-animation-fill-mode:both; | |
| animation-fill-mode:both; | |
| -webkit-transition: all 0.25s ease-in-out; | |
| -moz-transition: all 0.25s ease-in-out; | |
| -ms-transition: all 0.25s ease-in-out; | |
| -o-transition: all 0.25s ease-in-out; |
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
| @-webkit-keyframes wobble { | |
| 0% { -webkit-transform: translateX(0%); } | |
| 15% { -webkit-transform: translateX(-25%) rotate(-5deg); } | |
| 30% { -webkit-transform: translateX(20%) rotate(3deg); } | |
| 45% { -webkit-transform: translateX(-15%) rotate(-3deg); } | |
| 60% { -webkit-transform: translateX(10%) rotate(2deg); } | |
| 75% { -webkit-transform: translateX(-5%) rotate(-1deg); } | |
| 100% { -webkit-transform: translateX(0%); } | |
| } |
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
| <style> | |
| #tmp-notify { | |
| position:absolute; | |
| margin:20px; | |
| left:0; | |
| top:0; | |
| right:0; | |
| z-index:9999; | |
| } |
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
| {% plugin rawtext fanpage_url %} | |
| <script type="text/javascript"> | |
| if (!document.body.className.match('page_preview')) { | |
| var redir; | |
| if (window.location.search) { | |
| // Triggered if there's already a social referrer being tracked | |
| var ref_search = window.location.search; | |
| var ref = ref_search.split('='); | |
| var ref_id = ref[1]; |
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
| {% plugin rawtext desktop_redirect_url %} | |
| <script type="text/javascript"> | |
| if (!document.body.className.match('page_preview')) { | |
| // Redirects as soon as possible | |
| setInterval( function () { | |
| top.location.replace({{ desktop_redirect_url | json }}); | |
| },250); | |
| } | |
| </script> |