Adding actions dropdown to admin order view/pages

This commit is contained in:
Rob Harrington
2015-12-11 22:20:59 +11:00
parent ae0ad73b4a
commit e6a51bb49d
12 changed files with 91 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
angular.module("admin.dropdown").directive "linksDropdown", ($window)->
restrict: "C"
scope:
links: "="
templateUrl: "admin/links_dropdown.html"

View File

@@ -1 +1 @@
angular.module("admin.dropdown", [])
angular.module("admin.dropdown", ['templates'])