mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 08:48:03 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
20 lines
No EOL
831 B
HTML
20 lines
No EOL
831 B
HTML
<tr class="e-item" data-bind="css: {'disabled': disabled }">
|
|
<td class="e-action">
|
|
<span class="domain-name" data-bind="text: name"></span>
|
|
</td>
|
|
<td>
|
|
<a class="btn btn-small btn-small-small btn-danger pull-right button-delete" data-bind="css: {'delete-access': deleteAccess()}, click: function(oDomain) { $root.deleteDomain(oDomain); }">
|
|
<span>Are you sure?</span>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<span class="delete-domain" data-bind="visible: !deleteAccess(), click: function (oDomain) { $root.domainForDeletion(oDomain); }">
|
|
<i class="icon-trash"></i>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<span class="disable-domain" data-bind="click: function (oDomain) { $root.disableDomain(oDomain); }">
|
|
<i data-bind="css: {'icon-checkbox-checked': !disabled(), 'icon-checkbox-unchecked': disabled}"></i>
|
|
</span>
|
|
</td>
|
|
</tr> |