Fixed problem with double arrows on navbar
This commit is contained in:
parent
38a89a7dcb
commit
f06030f17d
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ function flip_dropdowns(obj, direction) {
|
|||
if (obj.hasClass('drop' + direction)) { return; }
|
||||
var reverse = ((direction === 'up') ? 'down' : 'up');
|
||||
obj.removeClass('drop' + reverse).addClass('drop' + direction);
|
||||
obj.prev().children().removeClass('ion-ios-arrow-' + reverse).addClass('ion-ios-arrow-' + direction);
|
||||
obj.prev().find('i').removeClass('ion-ios-arrow-' + reverse).addClass('ion-ios-arrow-' + direction);
|
||||
}
|
||||
|
||||
function position_navbar() {
|
||||
|
|
Reference in a new issue