You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue was from redmine_bootstrap_kit plugin, I did some change in redmine_bootstrap_kit\assets\javascripts\bootstrap\bootstrap.js file to fixed it.
function setUpModalBox(source, target) {
$(source).each(function() {
$(this).on('click', function() {
// var title = $(this).html();
var title = $(this).text() || $(this).attr('title') || $(this).html();
$.get($(this).attr('href'), function(data){
$(target).html(data);
$(target).dialog('option', 'title', title);
$(target).dialog('open');
});
return false;
});
});
}
When clicked on build history, panel title displays html code "<i ...".
On Redmine 3.0.6
http://prntscr.com/9900hz
The text was updated successfully, but these errors were encountered: