Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2017-10-03 12:01:57 +0300
committerdartcafe <github@dartcafe.de>2017-10-03 12:01:57 +0300
commit22ad10eedc925bdf40621b1f4e0af26ab8d6e7e1 (patch)
tree83a4811270490ee5f1a30419d723b11dd480580e /js
parentd12e782220841cf7595a61139ab76aeab7a4b292 (diff)
status icons return
Diffstat (limited to 'js')
-rwxr-xr-xjs/start.js15
1 files changed, 4 insertions, 11 deletions
diff --git a/js/start.js b/js/start.js
index c12afb53..6847f606 100755
--- a/js/start.js
+++ b/js/start.js
@@ -1,23 +1,16 @@
$(document).ready(function () {
-
- $('.table-body div.column.created').each(function(i, obj) {
- if (isDate(obj.dataset.value)) {
- obj.dataset.value = obj.dataset.value.replace(/ /g,"T")+"Z";
- obj.innerText = OC.Util.relativeModifiedDate(obj.dataset.value);
- };
- });
-
- $('.table-body div.column.expiry').each(function(i, obj) {
+/*
+ $('.table-body div.column.expiry').each(function(i, obj) {
if (isDate(obj.dataset.value)) {
obj.dataset.value = obj.dataset.value.replace(/ /g,"T")+"Z";
obj.innerText= OC.Util.relativeModifiedDate(obj.dataset.value);
};
});
-
+ */
$('.table-body .avatardiv').each(function(i, obj) {
$(obj).avatar(obj.title, 32);
});
-
+
$('.cl_delete').click(deletePoll);