Plugin Directory

Changeset 1375241


Ignore:
Timestamp:
03/20/2016 11:35:57 PM (10 years ago)
Author:
C. E.
Message:

fixed highlighting

Location:
mathematica-toolbox/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mathematica-toolbox/trunk/Mathematica-Toolbox.php

    r1244500 r1375241  
    1414 * Plugin URI:        https://wordpress.org/plugins/Mathematica-Toolbox/
    1515 * Description:       A "toolbox" of shortcodes for people who write articles about Mathematica code/the Wolfram Language. Includes source code highlighting for Mathematica code/Wolfram Language, automated CDF embedding, Wolfram Cloud API utility shortcode, and a seamless cached interface to Mathematica.Stackexchange.com.
    16  * Version:           1.0.2
     16 * Version:           1.0.3
    1717 * Author:            Calle Ekdahl
    1818 * License:           GPL-2.0+
  • mathematica-toolbox/trunk/README.txt

    r1244508 r1375241  
    55Requires at least: 3.0.1
    66Tested up to: 4.2.2
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    124124== Changelog ==
    125125
     126**Version 1.0.3**
     127
     128Release date: 21st Mars, 2016
     129
     130* Fixed a code highlighting problem.
     131
    126132**Version 1.0.2**
    127133
    128134Release date: 13th September, 2015
    129135
    130 * Fixed a problem with the `WolframCloudAPI` shortcode with custom parameters.
     136* Fixed a problem with the `WolframAPI` shortcode with custom parameters.
    131137
    132138**Version 1.0.1**
  • mathematica-toolbox/trunk/public/Mathematica-WP-Toolbox-public.php

    r1244467 r1375241  
    530530    public function enqueue_styles() {
    531531
    532         //wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/Mathematica-WP-Toolbox-public.css', array(), $this->version, 'all' );
    533         //wp_enqueue_style( 'prettify', plugin_dir_url( __FILE__ ) . 'css/prettify-mma.css', array(), $this->version, 'all' );
    534         wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/minified.css', array(), $this->version, 'all' );
     532        wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/Mathematica-WP-Toolbox-public.css', array(), $this->version, 'all' );
     533        wp_enqueue_style( 'prettify', plugin_dir_url( __FILE__ ) . 'css/prettify-mma.css', array(), $this->version, 'all' );
     534        //wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/minified.css', array(), $this->version, 'all' );
    535535    }
    536536
     
    542542    public function enqueue_scripts() {
    543543
    544         //wp_enqueue_script( 'lang-mma', plugin_dir_url( __FILE__ ) . 'js/lang-mma.js', array( 'prettify' ), $this->version, true );
    545         //wp_enqueue_script( 'prettify', plugin_dir_url( __FILE__ ) . 'js/prettify.js', array(), $this->version, true );
     544        wp_enqueue_script( 'lang-mma', plugin_dir_url( __FILE__ ) . 'js/lang-mma.js', array( 'prettify' ), $this->version, true );
     545        wp_enqueue_script( 'prettify', plugin_dir_url( __FILE__ ) . 'js/prettify.js', array(), $this->version, true );
    546546        wp_enqueue_script( 'cdfplugin', plugin_dir_url( __FILE__ ) . 'js/cdfplugin.js', array(), $this->version, false );
    547         //wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/Mathematica-WP-Toolbox-public.js', array( 'jquery' ), $this->version, true );
    548         wp_enqueue_script( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'js/minified.js', array( 'jquery' ), $this->version, true );
     547        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/Mathematica-WP-Toolbox-public.js', array( 'jquery' ), $this->version, true );
     548        //wp_enqueue_script( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'js/minified.js', array( 'jquery' ), $this->version, true );
    549549    }
    550550
Note: See TracChangeset for help on using the changeset viewer.