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
### Keybase proof | |
I hereby claim: | |
* I am sickDevelopers on github. | |
* I am thatsmeoscar (https://keybase.io/thatsmeoscar) on keybase. | |
* I have a public key whose fingerprint is DC08 AE05 E109 F60B F1D1 4B5E 3E10 B03C DBD5 5080 | |
To claim this, I am signing this object: |
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
/*globals wpml_browser_redirect_params */ | |
jQuery(document).ready(function () { | |
if (jQuery.cookie !== undefined) { | |
// Check if cookie are enabled | |
jQuery.cookie('wpml_browser_redirect_test', '1'); | |
var cookie_enabled = jQuery.cookie('wpml_browser_redirect_test') === '1'; | |
jQuery.removeCookie('wpml_browser_redirect_test'); | |
if (cookie_enabled) { |
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
/* | |
_______ | |
These simple SCSS mixins for Foundation4 are made by me to deal with media-queries and have a clean code at the same time! ;) | |
****IMPORTANT**** | |
Due to Foundation 4 uses mobile-first methodology, every $phone-"X" variable in these mixins defines the value for every screen size. | |
$desktop-"X" values overrides $phone-"X" values when window width is 768px and above. | |
So, to simplify this, we can think that way: ($phone-"X" < 768px => $desktop-"X") |
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
<html> | |
<head> | |
<title>KenBurns Test</title> | |
</head> | |
<body> | |
<canvas id="kenburns"></canvas> | |
</body> | |
</html> |