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
/** | |
* HTML5 Form Validation 0.0.1 | |
* @author Kyle Foster (@hkfoster) | |
* @license MIT (http://www.opensource.org/licenses/mit-license.php/) | |
*/ | |
var formValidation = ( function() { | |
var init = function() { |
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 crosswalk = { | |
folder: { | |
arm: 'tools/crosswalk-cordova-7.36.154.13-arm', | |
x86: 'tools/crosswalk-cordova-7.36.154.13-x86' | |
} | |
}; | |
// https://crosswalk-project.org/#documentation/cordova/migrate_an_application | |
var addCrosswalk = { | |
command: [ |
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 | |
/* | |
Plugin Name: Pluralsight plugin development demo | |
Description: This is a demonstration plugin for the Introduction to WordPress Plugin Development course on Pluralsight. | |
Author: Chris Reynolds | |
Version: 1.0 | |
*/ | |
function ps_plugindev_options_page() { | |
?> |
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
/* | |
Make the Facebook Like box responsive (fluid width) | |
https://developers.facebook.com/docs/reference/plugins/like-box/ | |
*/ | |
/* This element holds injected scripts inside iframes that in some cases may stretch layouts. So, we're just hiding it. */ | |
#fb-root { | |
display: none; | |
} |