diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/autocomplete/maxheight.html | 6 | ||||
-rw-r--r-- | demos/bootstrap.js | 4 | ||||
-rw-r--r-- | demos/tooltip/custom-style.html | 2 |
3 files changed, 1 insertions, 11 deletions
diff --git a/demos/autocomplete/maxheight.html b/demos/autocomplete/maxheight.html index 9ebda7938..b8c59819d 100644 --- a/demos/autocomplete/maxheight.html +++ b/demos/autocomplete/maxheight.html @@ -13,12 +13,6 @@ /* prevent horizontal scrollbar */ overflow-x: hidden; } - /* IE 6 doesn't support max-height - * we use height instead, but this forces the menu to always be this tall - */ - * html .ui-autocomplete { - height: 100px; - } </style> <script src="../../external/requirejs/require.js"></script> <script src="../bootstrap.js"> diff --git a/demos/bootstrap.js b/demos/bootstrap.js index 9b0468028..ba1cde2e9 100644 --- a/demos/bootstrap.js +++ b/demos/bootstrap.js @@ -2,9 +2,7 @@ ( function() { "use strict"; -// Find the script element -var scripts = document.getElementsByTagName( "script" ); -var script = scripts[ scripts.length - 1 ]; +var script = document.currentScript; // Read the modules var modules = script.getAttribute( "data-modules" ); diff --git a/demos/tooltip/custom-style.html b/demos/tooltip/custom-style.html index 5cbd4bbd3..8ab8dcc9d 100644 --- a/demos/tooltip/custom-style.html +++ b/demos/tooltip/custom-style.html @@ -60,8 +60,6 @@ width: 25px; height: 25px; box-shadow: 6px 5px 9px -9px black; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); transform: rotate(45deg); } .arrow.top:after { |