user944513
user944513

Reputation: 12729

AngularJS : why button hide after click?

I am trying to open menu menu opening on button click .I am able to show menu option .But I am facing one issue my button is hide when menu option is display.menu should display below the button.I need to show button as well as menu when user click on button.I need menu should display below button

here is my code

http://codepen.io/anon/pen/RPaOKJ

var app = angular.module("ionicApp", ['ionic']);
app.directive('custommenu', function () {
    return {
        restrict: 'A',
        scope: {

        },
        link: function (scope, element, attr) {

            $(element).menu();
        }
    }
})
app.controller('cnt', function ($scope) {
    $scope.isMenuVisible = false;
    $scope.showMenu = function () {
        $scope.isMenuVisible = true;

    }
})

Upvotes: 0

Views: 101

Answers (1)

Alien
Alien

Reputation: 3678

the button does not hide.

Try add margin-top: 30px; to .menu

http://codepen.io/anon/pen/XbdQgN

Upvotes: 1

Related Questions