mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-18 00:17:25 +00:00
WIP: Adding a side_menu to the enterprise form
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
angular.module("admin.enterprises")
|
||||
.controller "sideMenuCtrl", ($scope, Enterprise, SideMenu) ->
|
||||
$scope.Enterprise = Enterprise.enterprise
|
||||
$scope.select = SideMenu.select
|
||||
|
||||
SideMenu.setItems [
|
||||
{ name: 'Primary Details' }
|
||||
{ name: 'Address' }
|
||||
{ name: "Shipping Methods"}
|
||||
{ name: "Payment Methods"}
|
||||
{ name: "Enterprise Fees"}
|
||||
{ name: 'Contact & Social' }
|
||||
{ name: 'About' }
|
||||
{ name: "Business Details"}
|
||||
{ name: 'Images' }
|
||||
{ name: "Preferences"}
|
||||
]
|
||||
|
||||
$scope.select(0)
|
||||
$scope.menu = SideMenu.items
|
||||
Reference in New Issue
Block a user