Changeset 2255489
- Timestamp:
- 03/06/2020 09:20:44 AM (6 years ago)
- Location:
- easytimetable-responsive-schedule-management-system/trunk
- Files:
-
- 1 deleted
- 3 edited
-
README.txt (modified) (2 diffs)
-
easy-timetable.php (modified) (1 diff)
-
public/class-easy-timetable-public.php (modified) (2 diffs)
-
public/js/dist (deleted)
Legend:
- Unmodified
- Added
- Removed
-
easytimetable-responsive-schedule-management-system/trunk/README.txt
r2230860 r2255489 5 5 Requires at least: 3.5.0 6 6 Tested up to: 5.3 7 Stable tag: 1.4. 87 Stable tag: 1.4.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 120 120 121 121 == Changelog == 122 = 1.4.9 = 123 Improvement: js script optimization. 3 scripts removed to gain 200ko. 122 124 = 1.4.8 = 123 125 Bug Fix: change sql install script to avoid installation issue. -
easytimetable-responsive-schedule-management-system/trunk/easy-timetable.php
r2230869 r2255489 17 17 * Plugin URI: http://www.stereonomy.com 18 18 * Description: A very easy-to-use schedule management system to create beautiful responsive Timetable 19 * Version: 1.4. 819 * Version: 1.4.9 20 20 * Author: Stereonomy - Anthony Ceccarelli 21 21 * Author URI: http://www.stereonomy.com -
easytimetable-responsive-schedule-management-system/trunk/public/class-easy-timetable-public.php
r2230865 r2255489 73 73 wp_enqueue_style( $this->plugin_name. " tooltipster", plugin_dir_url( __FILE__ ) . 'tooltipster/css/tooltipster.bundle.min.css', array(), $this->version, 'all' ); 74 74 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 76 76 77 77 … … 85 85 */ 86 86 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 ); 89 88 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);91 89 wp_enqueue_script( $this->plugin_name. " createcss", plugin_dir_url( __FILE__ ) . 'js/jquery.injectCSS.js', array( 'jquery' ), $this->version, false ); 92 90 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 95 92 } 96 93 }
Note: See TracChangeset
for help on using the changeset viewer.