Changeset 1903715
- Timestamp:
- 07/04/2018 03:53:27 AM (8 years ago)
- Location:
- wp-tocjs/trunk
- Files:
-
- 1 added
- 2 deleted
- 2 edited
-
assets/js/toc.js (added)
-
assets/js/tocjs.js (deleted)
-
assets/js/tocjs.min.js (deleted)
-
readme.txt (modified) (2 diffs)
-
wp-tocjs.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-tocjs/trunk/readme.txt
r1889407 r1903715 4 4 Tags: shortcode, quote, quotation, blockquote 5 5 Requires at least: 4.0 6 Tested up to: 4.9. 47 Stable tag: 0. 1.66 Tested up to: 4.9.6 7 Stable tag: 0.3.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 == Changelog == 56 56 57 = 0.3.0 = 58 59 * Changed the id for the in-page link from the heading tag to the previous span. 60 57 61 = 0.1.7 = 58 62 * Bug fix. -
wp-tocjs/trunk/wp-tocjs.php
r1889407 r1903715 4 4 Plugin URI: http://e-joint.jp/works/wp-tocjs/ 5 5 Description: A WordPress plugin that makes Table of Contents automatically. 6 Version: 0. 1.76 Version: 0.3.0 7 7 Author: e-JOINT.jp 8 8 Author URI: http://e-joint.jp … … 283 283 if(!isset($this->options['nojs']) || !$this->options['nojs']) { 284 284 if(!$this->options['nojs']) { 285 wp_enqueue_script('wptjs', plugins_url('assets/js/toc js.min.js', __FILE__), array('jquery'), $this->version, true);285 wp_enqueue_script('wptjs', plugins_url('assets/js/toc.js', __FILE__), array('jquery'), $this->version, true); 286 286 } else { 287 wp_enqueue_script('wptjs', plugins_url('assets/js/toc js.min.js', __FILE__), array('jquery'), $this->version, true);287 wp_enqueue_script('wptjs', plugins_url('assets/js/toc.js', __FILE__), array('jquery'), $this->version, true); 288 288 } 289 289 }
Note: See TracChangeset
for help on using the changeset viewer.