17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
angular.module('syncthing.core')
|
|
.directive('modal', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'modal.html',
|
|
replace: true,
|
|
transclude: true,
|
|
scope: {
|
|
title: '@',
|
|
status: '@',
|
|
icon: '@',
|
|
close: '@',
|
|
large: '@'
|
|
}
|
|
};
|
|
});
|