Last active
December 16, 2015 09:58
-
-
Save jefkin/5416412 to your computer and use it in GitHub Desktop.
And this is the code I replaced in the file:
ms-Dropdown/js/msdropdown/jquery.dd.js in the var _adjustOpen = function () { ... } definition after the var's.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ('alwaysdown' == _settings.openDirection.toLowerCase()) | |
| { | |
| $("#" + childid).css({top: top + "px", zIndex: _settings.zIndex}); | |
| $("#" + id).removeClass("borderRadius borderRadiusBtm").addClass("borderRadiusTp"); | |
| } | |
| else if ((wH + st) < Math.floor(cH + mH + pos.top) || _settings.openDirection.toLowerCase() == 'alwaysup') { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment