summaryrefslogtreecommitdiffstats
path: root/sitestatic
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2019-02-28 17:13:26 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2019-02-28 20:50:29 +0100
commit5d246417581631f086bfeb8176d040349b097b2b (patch)
tree3264148dbba96c49920bd97dfdffc506292187f0 /sitestatic
parent6bcd40d3a9e51698d139e3277bed30730b115c5c (diff)
downloadarchweb-5d246417581631f086bfeb8176d040349b097b2b.tar.gz
archweb-5d246417581631f086bfeb8176d040349b097b2b.zip
templates: get rid of modify_attributes
The modify_attributes was used for IE to set attributes on DOM elements, since Archweb no longer supports IE and this can be done easily with plain JavaScript. Also drop non-standard HTML attributes since they aren't worth keeping. Signed-off-by: Jelle van der Waa <jelle@vdwaa.nl>
Diffstat (limited to 'sitestatic')
-rw-r--r--sitestatic/archweb.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/sitestatic/archweb.js b/sitestatic/archweb.js
index ae4a1f1c..9e8ec877 100644
--- a/sitestatic/archweb.js
+++ b/sitestatic/archweb.js
@@ -456,13 +456,3 @@ function collapseNotes(elements) {
});
});
}
-
-/* HTML5 input type and attribute enhancements */
-function modify_attributes(to_change) {
- /* jQuery doesn't let us change the 'type' attribute directly due to IE
- woes, so instead we can clone and replace, setting the type. */
- $.each(to_change, function(id, attrs) {
- var obj = $(id);
- obj.replaceWith(obj.clone().attr(attrs));
- });
-}