Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Visual/HTML error on history view #49

Open
acosonic opened this issue Dec 1, 2015 · 2 comments
Open

Visual/HTML error on history view #49

acosonic opened this issue Dec 1, 2015 · 2 comments
Labels

Comments

@acosonic
Copy link

acosonic commented Dec 1, 2015

When clicked on build history, panel title displays html code "<i ...".

On Redmine 3.0.6
http://prntscr.com/9900hz

@n-rodriguez n-rodriguez self-assigned this Dec 10, 2015
@bellatriks
Copy link

The same issue on Redmine 3.2.0.stable + redmine_jenkins 1.0.1

@timesong
Copy link

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;
    });
  });
}

@n-rodriguez n-rodriguez removed their assignment Dec 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants