Plugin Directory

Changeset 2606349


Ignore:
Timestamp:
09/28/2021 07:04:54 PM (5 years ago)
Author:
crisworth
Message:

Feature update

Location:
mondoplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mondoplayer/trunk/js/web_player_v2.js

    r2603206 r2606349  
    53185318            continue;
    53195319        }
    5320         let cur_hashtags = JSON.parse(state.autopilots.list[i].hashtags_string);
     5320        let cur_hashtags = {fixed:[],variable:[],search:[]};
     5321        if (state.autopilots.list[i].hashtags_string != null && state.autopilots.list[i].hashtags_string != "") {
     5322            cur_hashtags = JSON.parse(state.autopilots.list[i].hashtags_string);
     5323        } else {
     5324            state.autopilots.list[i].hashtags_string = JSON.stringify(cur_hashtags);
     5325        }
    53215326        for (var t = 0; t < cur_hashtags.fixed.length; t++) {
    53225327            hashtag_list[cur_hashtags.fixed[t]] = 1;
  • mondoplayer/trunk/mondoplayer.php

    r2603206 r2606349  
    55    Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video.
    66    Author: MondoTag
    7     Version: 1.0.341
     7    Version: 1.0.342
    88    Tested up to: 5.7.2
    99    License: GPLv2 or later
     
    188188
    189189        wp_register_style( $this->mondoplayer_plugin_slug, plugins_url("css/web_player.css",__FILE__), false, '1.0.52' );
    190         wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.113' );
     190        wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.114' );
    191191        $db = get_option("mondoplayer_db_version", '');
    192192        if ($db != $db_version) {
Note: See TracChangeset for help on using the changeset viewer.