Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bootstrap
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 263
    • Issues 263
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 114
    • Merge requests 114
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bootstrap
  • bootstrap
  • Issues
  • #6921
Closed
Open
Issue created Feb 13, 2013 by Administrator@rootContributor

Since 2.3 tooltips and popovers are broken when Prototype.js is included.

Created by: paales

The problem is that the parent is hidden when the tooltip is hidden.

bootstrap-tooltip.js:

  , hide: function () {
      var that = this
        , $tip = this.tip()
        , e = $.Event('hide')

      this.$element.trigger(e)
      if (e.isDefaultPrevented()) return
....

The line this.$element.trigger(e) causes problems, causes the parent element (the button, link or text) to be hidden. When I remove prototype.js everything works as expected. When I remove the this.$element.trigger(e) code, everything works as expected.

jQuery 1.9 (with noConflict of course) and prototype 1.7, any suggestions how to fix this?

Assignee
Assign to
Time tracking