mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
25 lines
No EOL
794 B
JavaScript
25 lines
No EOL
794 B
JavaScript
(function () {
|
|
|
|
module.directive('tableComponent',
|
|
function () {
|
|
return {
|
|
templateUrl: createBaseUrl(getBaseUrl(), 'Content/app/userManagement/Directives/table.html')
|
|
};
|
|
})
|
|
.directive('addUser',
|
|
function () {
|
|
return {
|
|
templateUrl: createBaseUrl(getBaseUrl(), 'Content/app/userManagement/Directives/addUser.html')
|
|
};
|
|
})
|
|
.directive('sidebar',
|
|
function () {
|
|
return {
|
|
templateUrl: createBaseUrl(getBaseUrl(), 'Content/app/userManagement/Directives/sidebar.html')
|
|
};
|
|
});
|
|
|
|
function getBaseUrl() {
|
|
return $('#baseUrl').text();
|
|
}
|
|
})(); |