Plugin Directory

Changeset 1903715


Ignore:
Timestamp:
07/04/2018 03:53:27 AM (8 years ago)
Author:
ejointjp
Message:

v3.0

Location:
wp-tocjs/trunk
Files:
1 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • wp-tocjs/trunk/readme.txt

    r1889407 r1903715  
    44Tags: shortcode, quote, quotation, blockquote
    55Requires at least: 4.0
    6 Tested up to: 4.9.4
    7 Stable tag: 0.1.6
     6Tested up to: 4.9.6
     7Stable tag: 0.3.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5555== Changelog ==
    5656
     57= 0.3.0 =
     58
     59* Changed the id for the in-page link from the heading tag to the previous span.
     60
    5761= 0.1.7 =
    5862* Bug fix.
  • wp-tocjs/trunk/wp-tocjs.php

    r1889407 r1903715  
    44Plugin URI: http://e-joint.jp/works/wp-tocjs/
    55Description: A WordPress plugin that makes Table of Contents automatically.
    6 Version: 0.1.7
     6Version: 0.3.0
    77Author: e-JOINT.jp
    88Author URI: http://e-joint.jp
     
    283283    if(!isset($this->options['nojs']) || !$this->options['nojs']) {
    284284      if(!$this->options['nojs']) {
    285         wp_enqueue_script('wptjs', plugins_url('assets/js/tocjs.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);
    286286      } else {
    287         wp_enqueue_script('wptjs', plugins_url('assets/js/tocjs.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);
    288288      }
    289289    }
Note: See TracChangeset for help on using the changeset viewer.