From 95212f4baf8cd34027896ff4690b3d041c817068 Mon Sep 17 00:00:00 2001
From: Thomas Waldmann
Date: Sun, 3 Nov 2013 05:57:13 +0100
Subject: [PATCH] fix invalid html, remove unneeded semicolons from js
---
nsupdate/main/templates/main/about.html | 22 +++++++++++-----------
nsupdate/templates/base.html | 6 +++---
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/nsupdate/main/templates/main/about.html b/nsupdate/main/templates/main/about.html
index a5aae18..c25224d 100644
--- a/nsupdate/main/templates/main/about.html
+++ b/nsupdate/main/templates/main/about.html
@@ -22,14 +22,14 @@
Why another one?
As far as we know, there was no service yet that is not:
-
- - nagging its users to make a paid subscription
- - annoying its users with advertisements or spam
- - cancelling hosts or accounts after a short period of non-usage
- - hiding the few free features almost undiscoverably
- between a ton of commercial-only features
-
+
+ - nagging its users to make a paid subscription
+ - annoying its users with advertisements or spam
+ - cancelling hosts or accounts after a short period of non-usage
+ - hiding the few free features almost undiscoverably
+ between a ton of commercial-only features
+
How is it?
@@ -86,11 +86,11 @@
Visit the
nsupdate.info project on GitHub to:
-
- - file issues on the issue tracker for bugs, ideas, patches.
- - create pull requests for your contributions.
-
+
+ - file issues on the issue tracker for bugs, ideas, patches.
+ - create pull requests for your contributions.
+
{% endblock %}
diff --git a/nsupdate/templates/base.html b/nsupdate/templates/base.html
index 93d26e4..5375fb9 100644
--- a/nsupdate/templates/base.html
+++ b/nsupdate/templates/base.html
@@ -120,7 +120,7 @@
function insert_img_ipv4() {
$('#ip_detection').add(
'');
- };
+ }
$(setTimeout("insert_img_ipv4()", 1000));
{% endif %}
@@ -129,7 +129,7 @@
function insert_img_ipv6() {
$('#ip_detection').add(
'');
- };
+ }
$(setTimeout("insert_img_ipv6()", 1000));
{% endif %}
@@ -141,7 +141,7 @@
$('#ipv4').text(data['ipv4']);
$('#ipv6').text(data['ipv6']);
});
- };
+ }
$(setTimeout("insert_ips()", 2000));
{% endif %}