Add possibility to detect the index page.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 26 Nov 2010 22:56:07 +0000 (23:56 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 26 Nov 2010 22:56:07 +0000 (23:56 +0100)
src/main/resources/static/javascript/sone.js
src/main/resources/templates/index.html

index ba78d2c..59135af 100644 (file)
@@ -601,6 +601,25 @@ function getStatus() {
        })
 }
 
+/**
+ * Returns the content of the page-id attribute.
+ *
+ * @returns The page ID
+ */
+function getPageId() {
+       return $("#sone .page-id").text();
+}
+
+/**
+ * Returns whether the current page is the index page.
+ *
+ * @returns {Boolean} <code>true</code> if the current page is the index page,
+ *          <code>false</code> otherwise
+ */
+function isIndexPage() {
+       return getPageId() == "index";
+}
+
 var loadedPosts = {};
 var loadedReplies = {};
 
index 5c2fca0..39d53f1 100644 (file)
@@ -1,5 +1,7 @@
 <%include include/head.html>
 
+       <div class="page-id hidden">index</div>
+
        <h1><%= Page.Index.PostList.Title|l10n|html></h1>
 
        <div id="posts">