1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-10 23:54:08 +02:00

Fixes #11712: Better support for .table-responsive within .panel's

This commit is contained in:
Mark Otto
2013-12-04 21:13:33 -08:00
parent 66f9c7d6d5
commit a45d839874
4 changed files with 11 additions and 2 deletions

View File

@@ -704,7 +704,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
var backdrop = '.dropdown-backdrop'
var toggle = '[data-toggle=dropdown]'
var Dropdown = function (element) {
var $el = $(element).on('click.bs.dropdown', this.toggle)
$(element).on('click.bs.dropdown', this.toggle)
}
Dropdown.prototype.toggle = function (e) {