Changeset 1036351
- Timestamp:
- 12/02/2014 12:38:26 AM (11 years ago)
- Location:
- generous/trunk
- Files:
-
- 3 edited
-
generous.php (modified) (1 diff)
-
public/class-wp-generous-public.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
generous/trunk/generous.php
r1015539 r1036351 4 4 * Plugin URI: https://github.com/generous/generous-wordpress 5 5 * Description: The official Generous plugin that allows you to easily generate a store. 6 * Version: 0.1. 06 * Version: 0.1.1 7 7 * Author: Generous 8 8 * Author URI: https://genero.us -
generous/trunk/public/class-wp-generous-public.php
r1015539 r1036351 206 206 wp_enqueue_script( $this->name ); 207 207 208 wp_register_script( "{$this->name}-js", 'http://js.genero.us/', array(), $this->version, false ); 208 $protocol = is_ssl() ? 'https' : 'http'; 209 210 wp_register_script( "{$this->name}-js", "$protocol://js.genero.us/", array(), $this->version, false ); 209 211 wp_enqueue_script( "{$this->name}-js" ); 210 212 -
generous/trunk/readme.txt
r1015539 r1036351 4 4 Requires at least: 3.8 5 5 Tested up to: 4.0 6 Stable tag: 0.1. 06 Stable tag: 0.1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 84 84 == Changelog == 85 85 86 = 0.1.1 = 87 * Added https support to generous.js script. 88 86 89 = 0.1.0 = 87 90 * Initial release.
Note: See TracChangeset
for help on using the changeset viewer.