Plugin Directory

Changeset 2255489


Ignore:
Timestamp:
03/06/2020 09:20:44 AM (6 years ago)
Author:
stereonomy
Message:

v 1.4.9

Location:
easytimetable-responsive-schedule-management-system/trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • easytimetable-responsive-schedule-management-system/trunk/README.txt

    r2230860 r2255489  
    55Requires at least: 3.5.0
    66Tested up to: 5.3
    7 Stable tag: 1.4.8
     7Stable tag: 1.4.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    120120
    121121== Changelog ==
     122= 1.4.9 =
     123Improvement: js script optimization. 3 scripts removed to gain 200ko.
    122124= 1.4.8 =
    123125Bug Fix: change sql install script to avoid installation issue.
  • easytimetable-responsive-schedule-management-system/trunk/easy-timetable.php

    r2230869 r2255489  
    1717 * Plugin URI:        http://www.stereonomy.com
    1818 * Description:       A very easy-to-use schedule management system to create beautiful responsive Timetable
    19  * Version:           1.4.8
     19 * Version:           1.4.9
    2020 * Author:            Stereonomy - Anthony Ceccarelli
    2121 * Author URI:        http://www.stereonomy.com
  • easytimetable-responsive-schedule-management-system/trunk/public/class-easy-timetable-public.php

    r2230865 r2255489  
    7373        wp_enqueue_style( $this->plugin_name. " tooltipster", plugin_dir_url( __FILE__ ) . 'tooltipster/css/tooltipster.bundle.min.css', array(), $this->version, 'all' );
    7474        wp_enqueue_style( $this->plugin_name. " tooltipster2", plugin_dir_url( __FILE__ ) . 'tooltipster/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-borderless.min.css', array(), $this->version, 'all' );
    75         wp_enqueue_style( $this->plugin_name. " tooltipster3", plugin_dir_url( __FILE__ ) . 'tooltipster/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-light.min.css', array(), $this->version, 'all' );
     75       
    7676   
    7777       
     
    8585     */
    8686    public function enqueue_scripts() {
    87         wp_enqueue_script( $this->plugin_name . "uikit-icon", 'https://cdnjs.cloudflare.com/ajax/libs/uikit/3.2.3/js/uikit-core.min.js', "", $this->version, false );
    88         //wp_enqueue_script( $this->plugin_name . "uikit-icon", plugin_dir_url( __FILE__ ) . 'js/uikit-icons.min.js', "", $this->version, false );
     87        wp_enqueue_script( $this->plugin_name . "uikit-icon", 'https://cdnjs.cloudflare.com/ajax/libs/uikit/3.3.3/js/uikit-core.min.js', "", $this->version, false );
    8988        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/easy-timetable-public.js', array( 'jquery' ), $this->version, false );
    90         //wp_enqueue_script('jQuery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js', "", "", false);
    9189        wp_enqueue_script( $this->plugin_name. " createcss", plugin_dir_url( __FILE__ ) . 'js/jquery.injectCSS.js', array( 'jquery' ), $this->version, false );
    9290        wp_enqueue_script( $this->plugin_name. " tooltipster", plugin_dir_url( __FILE__ ) . 'tooltipster/js/tooltipster.bundle.min.js', array( 'jquery' ), $this->version, false );
    93         wp_enqueue_script( $this->plugin_name. " print", plugin_dir_url( __FILE__ ) . 'js/dist/html2canvas.min.js', array( 'jquery' ), $this->version, false );
    94         wp_enqueue_script( $this->plugin_name. " printsvg", plugin_dir_url( __FILE__ ) . 'js/dist/html2canvas.svg.min.js', array( 'jquery' ), $this->version, false );     
     91       
    9592    }
    9693}
Note: See TracChangeset for help on using the changeset viewer.