Changeset 2594288
- Timestamp:
- 09/06/2021 12:54:26 PM (5 years ago)
- Location:
- mondoplayer/trunk
- Files:
-
- 2 edited
-
js/web_player_v2.js (modified) (1 diff)
-
mondoplayer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mondoplayer/trunk/js/web_player_v2.js
r2593356 r2594288 5367 5367 div.setAttribute("hashtag", cur_hashtag); 5368 5368 div.classList.add("search_cur_hashtag_entry"); 5369 let toggle = 0;5369 let toggle = "0"; 5370 5370 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>"; 5371 5371 document.getElementById("autopilot_search_hashtags_selected").appendChild(div); 5372 search_hashtag_toggle(cur_hashtag); 5372 5373 sort_search_hashtags(); 5373 5374 } -
mondoplayer/trunk/mondoplayer.php
r2594023 r2594288 5 5 Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video. 6 6 Author: MondoTag 7 Version: 1.0.33 77 Version: 1.0.338 8 8 Tested up to: 5.7.2 9 9 License: GPLv2 or later … … 185 185 186 186 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.1 09' );187 wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.110' ); 188 188 $db = get_option("mondoplayer_db_version", ''); 189 189 if ($db != $db_version) {
Note: See TracChangeset
for help on using the changeset viewer.