Hi
I test wp-3.1 and WP Dynamic Links plugin >> ALL OK work
but wp upgrade wp 4.3.1 >> crash (dark background)
I look:
Error file in /static/js/admin.js
This is file conflict wp system.
Error code ~ :
}).live('click', function () {
__destination_tag = this; // global variable
var modalOpen = function (url, data) {
var data = data || '';
$modal.addClass('loading').empty().dialog('open');
$(window).resize(); // FIX: for wordpress 3.1 to redraw overlay to avoid scrolls when window size has been reduced
$.post(url, data, function (response) {
$modal.removeClass('loading').html(response).dialog('option', 'position', 'center');
var $form = $modal.find('form[name="destination-set"]');
$form.find('input:reset').click(function () {
$modal.dialog('close');
});
$form.each(function () {
if ( ! $(this).attr('action')) {
$(this).attr('action', url);
}
});
$form.bind('submit', function () {
modalOpen($(this).attr('action'), $(this).serialize());
return false;
});
$form.find('input[type="submit"]').bind('click', function () {
$(this).clone().attr('type', 'hidden').appendTo($form);
});
************
I look:
https://stackoverflow.com/questions/17367736/jquery-ui-dialog-missing-close-icon
and
https://stackoverflow.com/questions/23428285/bootstrap-and-jqueryui-conflict/23428433#23428433
and
https://dullsharpness.com/2013/04/29/resolve-jqueryui-and-twitter-bootstrap-button-conflict/
I look, but not understand.
Anybody?