(function() {

function init(container) {
    var $container = $(container);
	if ($('.popup-page-title', $container).length) {
      var title = $('.popup-page-title', $container);
      title.closest(".ui-dialog").find(".ui-dialog-titlebar .ui-dialog-title").text(title.text());
      title.remove();
    }
}
if (typeof wr !== "undefined") {
    /* Init for ajax update */
    wr.LegacyAjaxPlugin.addContentUpdateListener(function(element) {
      init(element);
    });
}
init(document);
})();