Hi Ben, this is the error I get when I click on the icon to add a tweet (from inspect):
Uncaught TypeError: jQuery(…).typeWatch is not a function
at HTMLDocument.<anonymous> (admin-script.js:17)
at i (load-scripts.php:2)
at Object.fireWith [as resolveWith] (load-scripts.php:2)
at Function.ready (load-scripts.php:2)
//js:17 below
jQuery(‘.redux_field_search’).typeWatch({
callback:function( searchString ){
searchString = searchString.toLowerCase();
var searchArray = searchString.split(‘ ‘);
var parent = $(this).parents(‘.redux-container:first’);
var expanded_options = parent.find(‘.expand_options’);
if (searchString != “”) {
if (!expanded_options.hasClass(‘expanded’)) {
expanded_options.click();
parent.find(‘.redux-main’).addClass(‘redux-search’);
}