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
| android.permission.REAL_GET_TASKS | |
| android.permission.ACCESS_CACHE_FILESYSTEM | |
| android.permission.REMOTE_AUDIO_PLAYBACK | |
| com.amazon.client.metrics.nexus.permission.CANCEL_SCHEDULED_UPLOAD | |
| android.permission.REGISTER_WINDOW_MANAGER_LISTENERS | |
| android.permission.INTENT_FILTER_VERIFICATION_AGENT | |
| android.permission.BIND_INCALL_SERVICE | |
| com.google.android.gms.trustagent.framework.model.DATA_CHANGE_NOTIFICATION | |
| android.permission.WRITE_SETTINGS | |
| com.google.android.vending.verifier.ACCESS_VERIFIER |
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
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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.onload = function () { | |
| document.getElementById("password1").onchange = validatePassword; | |
| document.getElementById("password2").onchange = validatePassword; | |
| } | |
| function validatePassword(){ | |
| var pass2=document.getElementById("password2").value; | |
| var pass1=document.getElementById("password1").value; | |
| if(pass1!=pass2) | |
| document.getElementById("password2").setCustomValidity("Passwords Don't Match"); | |
| else |
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
| <?php | |
| /** | |
| * Hook in on activation | |
| */ | |
| global $pagenow; | |
| if ( is_admin() && isset( $_GET['activated'] ) && $pagenow == 'themes.php' ) add_action( 'init', 'yourtheme_woocommerce_image_dimensions', 1 ); | |
| /** | |
| * Define image sizes | |
| */ |
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> | |
| <head> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="container"><!-- your fb like container, leave it blank or paste the code here. --></div> | |
| <div id="fb-root"></div> |