This repository has been archived on 2026-08-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-11-26 13:39:59 +01:00
|
|
|
angular.module('syncthing.core')
|
|
|
|
|
.directive('modal', function () {
|
|
|
|
|
return {
|
|
|
|
|
restrict: 'E',
|
|
|
|
|
templateUrl: 'modal.html',
|
|
|
|
|
replace: true,
|
|
|
|
|
transclude: true,
|
|
|
|
|
scope: {
|
|
|
|
|
title: '@',
|
|
|
|
|
status: '@',
|
|
|
|
|
icon: '@',
|
|
|
|
|
close: '@',
|
|
|
|
|
large: '@'
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
});
|