quoteCalculator.controller("menuController",["$scope",function($scope){$scope.toggleMobileMenuDropdown=function(event){jQuery(".header-dropdown-wrapper").slideDown(200),event.stopPropagation()},$scope.openChildDropdown=function(event,item){event.stopPropagation();event=item.dropped;$scope.menuItems.forEach(function(item){item.dropped=!1}),item.dropped=!event},$scope.loading=!1,$scope.menuItems=[{label:"Home",url:"/"},{label:"Quote",children:[{label:"Create new quote",url:"preQuoteData.php"},{label:"Find existing quote",url:"findQuote.php"},{label:"New paramatised quote",url:"paramQuote.php"}]},{label:"Support",children:[{label:"Interface list",url:"interfacesInsert.php?userType=internal&viewType=main"},{label:"Parameters",url:"parameters.php"}]},{label:"Test",children:[{label:"Button testing",url:"buttonTester.php"},{label:"Template generator",url:"templateGenerator.php"}]}]}]);