Add function to detect if the current page is a “view post” page.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 27 Nov 2010 00:04:35 +0000 (01:04 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 27 Nov 2010 00:04:35 +0000 (01:04 +0100)
src/main/resources/static/javascript/sone.js
src/main/resources/templates/viewPost.html

index 7482138..fa2b1cf 100644 (file)
@@ -640,6 +640,26 @@ function getSoneId() {
        return $("#sone .sone-id").text();
 }
 
+/**
+ * Returns whether the current page is a “view post” page.
+ *
+ * @returns {Boolean} <code>true</code> if the current page is a “view post”
+ *          page, <code>false</code> otherwise
+ */
+function isViewPostPage() {
+       return getPageId() == "view-post";
+}
+
+/**
+ * Returns the ID of the currently shown post. This will only return a sensible
+ * value if isViewPostPage() returns <code>true</code>.
+ *
+ * @returns The ID of the currently shown post
+ */
+function getPostId() {
+       return $("#sone .post-id").text();
+}
+
 var loadedPosts = {};
 var loadedReplies = {};
 
index 867971c..3de8ebc 100644 (file)
@@ -1,5 +1,8 @@
 <%include include/head.html>
 
+       <div class="page-id hidden">view-post</div>
+       <div class="post-id hidden"><% post.id|html></div>
+
        <h1><%= Page.ViewPost.Page.Title|l10n|insert needle="{sone}" key=post.sone.niceName|html></h1>
 
        <%include include/viewPost.html>