added event
gitea/salix/dev This commit looks good Details

This commit is contained in:
Joan Sanchez 2019-11-15 10:03:46 +01:00
parent 6e5f460fab
commit ddb19cb198
3 changed files with 4 additions and 7 deletions

View File

@ -0,0 +1,3 @@
USE `vn`;
CREATE DEFINER=`root`@`%` EVENT `department_doCalc` ON SCHEDULE EVERY 15 SECOND STARTS '2019-11-15 00:00:00' ON COMPLETION PRESERVE ENABLE DO CALL vn.department_doCalc

View File

@ -32,12 +32,6 @@
</vn-avatar>
{{absenceType.name}}
</vn-chip>
<vn-chip>
<vn-avatar
ng-style="{backgroundColor: 'orange'}">
</vn-avatar>
My longer overflowing absence type in chip
</vn-chip>
</div>
</div>
</vn-side-menu>

View File

@ -100,7 +100,7 @@ class Controller {
let dayNumber = element.firstElementChild;
dayNumber.title = event.name;
dayNumber.style.backgroundColor = event.color;
dayNumber.style.color = 'white';
dayNumber.style.color = 'rgba(0, 0, 0, 0.7)';
}
}
Controller.$inject = ['$element', '$http'];