Changeset 1156881
- Timestamp:
- 05/09/2015 01:58:46 PM (11 years ago)
- Location:
- sticky-header
- Files:
-
- 25 added
- 4 edited
-
tags/1.2 (added)
-
tags/1.2/LICENSE.txt (added)
-
tags/1.2/README.txt (added)
-
tags/1.2/class-sticky-header.php (added)
-
tags/1.2/css (added)
-
tags/1.2/css/index.php (added)
-
tags/1.2/css/public.css (added)
-
tags/1.2/index.php (added)
-
tags/1.2/js (added)
-
tags/1.2/js/index.php (added)
-
tags/1.2/js/public.js (added)
-
tags/1.2/languages (added)
-
tags/1.2/languages/index.php (added)
-
tags/1.2/languages/sticky-header.mo (added)
-
tags/1.2/languages/sticky-header.pot (added)
-
tags/1.2/screenshot-1.png (added)
-
tags/1.2/screenshot-2.png (added)
-
tags/1.2/sticky-header-settings.php (added)
-
tags/1.2/sticky-header.php (added)
-
tags/1.2/uninstall.php (added)
-
tags/1.2/views (added)
-
tags/1.2/views/index.php (added)
-
tags/1.2/views/public.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/class-sticky-header.php (modified) (3 diffs)
-
trunk/css/public.css (modified) (1 diff)
-
trunk/css/public.min.css (added)
-
trunk/js/public.min.js (added)
-
trunk/sticky-header.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sticky-header/trunk/README.txt
r839235 r1156881 2 2 Contributors: slobodanmanic, nikolicdragan 3 3 Tags: sticky header, header, sticky menu, fixed header 4 Requires at least: 3.55 Tested up to: 3.8.16 Stable tag: 1.2 4 Requires at least: 4.0 5 Tested up to: 4.2.2 6 Stable tag: 1.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 1.2.1 = 55 * Adds compressed JS and CSS files. 56 54 57 = 1.2 = 55 58 * Fixes a PHP notice. -
sticky-header/trunk/class-sticky-header.php
r839235 r1156881 25 25 * @var string 26 26 */ 27 const VERSION = '1. 0.0';27 const VERSION = '1.2.1'; 28 28 29 29 /** … … 119 119 */ 120 120 public function enqueue_styles() { 121 wp_enqueue_style( $this->plugin_slug . '-plugin-styles', plugins_url( 'css/public.css', __FILE__ ), array(), self::VERSION ); 121 $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; 122 wp_enqueue_style( $this->plugin_slug . '-plugin-styles', plugins_url( "css/public$min.css", __FILE__ ), array(), self::VERSION ); 122 123 } 123 124 … … 128 129 */ 129 130 public function enqueue_scripts() { 130 wp_enqueue_script( $this->plugin_slug . '-plugin-script', plugins_url( 'js/public.js', __FILE__ ), array( 'jquery' ), self::VERSION ); 131 $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; 132 wp_enqueue_script( $this->plugin_slug . '-plugin-script', plugins_url( "js/public$min.js", __FILE__ ), array( 'jquery' ), self::VERSION ); 131 133 132 134 // Send plugin settings to JS file. -
sticky-header/trunk/css/public.css
r828982 r1156881 1 1 /* This stylesheet is used to style the public view of the plugin. */ 2 3 2 #thsp-sticky-header { 4 3 margin-top: -200px; -
sticky-header/trunk/sticky-header.php
r839235 r1156881 13 13 * Plugin URI: http://thematosoup.com 14 14 * Description: Adds sticky header to your WordPress website 15 * Version: 1.2 15 * Version: 1.2.1 16 16 * Author: ThematoSoup 17 17 * Author URI: http://thematosoup.com
Note: See TracChangeset
for help on using the changeset viewer.