Latest updates from IceHrmPro

This commit is contained in:
Thilina Pituwala
2020-05-20 18:47:29 +02:00
parent 60c92d7935
commit 7453a58aad
18012 changed files with 2089245 additions and 10173 deletions

View File

@@ -1,6 +1,6 @@
/* eslint-disable no-restricted-globals */
/*
Copyright (c) 2018 [Glacies UG, Berlin, Germany] (http://glacies.de)
Copyright (c) 2018 [Glacies UG, Berlin, Germany] (http://glacies.de)
Developer: Thilina Hasantha (http://lk.linkedin.com/in/thilinah | https://github.com/thilinah)
*/
const SocialShare = {

28
web/api-common/test.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test Api Common</title>
<script src="../js/jquery.js"></script>
<script src="bundle.js"></script>
</head>
<body>
<script type="application/javascript">
window.onload = function () {
document.querySelector('#time').innerHTML
= new Date().toISOString().slice(0, 19).replace('T', ' ');
timeUtils = setupTimeUtils(5.5);
timeUtils.convertToRelativeTime($('#time'));
};
var requestCache = new RequestCache();
requestCache.setData('123', {'abc':123});
console.log(requestCache.getData('123'));
</script>
<span id="time"></span>
</body>
</html>