Browse Source

Remove debug statement from dropdown

pull/1378/head
jlukic 10 years ago
parent
commit
39b375f550
2 changed files with 3 additions and 4 deletions
  1. 4
      RELEASE-NOTES.md
  2. 3
      src/definitions/modules/dropdown.js

4
RELEASE-NOTES.md

@ -5,8 +5,10 @@
**Enhancements**
- **Transition** - Transition's caching of final display state and *animation existence* now has improved performance.
- **Progress** - Progress now has sizing variations
- **Transition** now has ``useFailSafe`` parameter (off by default) to ensure transition callback fires even if native ``onAnimationEnd`` event does not fire due to element visibility. [Chromium Bug Report by Product Manager @ Mozilla](https://code.google.com/p/chromium/issues/detail?id=135350#c2)
**All UI** - Many ``em`` measurements adjusted slightly to calculate out as exact pixel values (Fixes 1px rounding errors)
**Steps** - Now use global border color
- **Progress** - Progress now has sizing variations
**Bugs**
- **Build** - NPM now correctly pins dependencies instead of using bleeding-edge versions which may break builds

3
src/definitions/modules/dropdown.js

@ -1120,9 +1120,6 @@ $.fn.dropdown = function(parameters) {
}
;
callback = callback || function(){};
if($currentMenu.size() === 0) {
debugger;
}
if( module.is.visible($currentMenu) || module.is.animating($currentMenu) ) {
module.verbose('Doing menu hide animation', $currentMenu);

Loading…
Cancel
Save