Plugin Directory

Changeset 2594288


Ignore:
Timestamp:
09/06/2021 12:54:26 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

    r2593356 r2594288  
    53675367    div.setAttribute("hashtag", cur_hashtag);
    53685368    div.classList.add("search_cur_hashtag_entry");
    5369     let toggle = 0;
     5369    let toggle = "0";
    53705370    div.innerHTML = "<div class='search_cur_hashtag_text'>" + cur_hashtag + "</div><div class='search_cur_hashtag_toggle'><div class='toggle_outside' onclick='search_hashtag_toggle(\"" + cur_hashtag + "\")'><div class='toggle_inside' id='hashtag_toggle_"+ cur_hashtag + "' hashtag='" + cur_hashtag + "' style='left: " + toggle + "'></div></div><input type='button' value='Delete' onclick='remove_search_hashtag(\"" + cur_hashtag + "\")' /></div>";
    53715371    document.getElementById("autopilot_search_hashtags_selected").appendChild(div);
     5372    search_hashtag_toggle(cur_hashtag);
    53725373    sort_search_hashtags();
    53735374}
  • mondoplayer/trunk/mondoplayer.php

    r2594023 r2594288  
    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.337
     7    Version: 1.0.338
    88    Tested up to: 5.7.2
    99    License: GPLv2 or later
     
    185185
    186186        wp_register_style( $this->mondoplayer_plugin_slug, plugins_url("css/web_player.css",__FILE__), false, '1.0.51' );
    187         wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.109' );
     187        wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.110' );
    188188        $db = get_option("mondoplayer_db_version", '');
    189189        if ($db != $db_version) {
Note: See TracChangeset for help on using the changeset viewer.