Add functions to detect a “view Sone” page and the ID of the shown Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 26 Nov 2010 23:02:22 +0000 (00:02 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 26 Nov 2010 23:02:22 +0000 (00:02 +0100)
src/main/resources/static/javascript/sone.js
src/main/resources/templates/viewSone.html

index 59135af..cb16e64 100644 (file)
@@ -620,6 +620,26 @@ function isIndexPage() {
        return getPageId() == "index";
 }
 
+/**
+ * Returns whether the current page is a “view Sone” page.
+ *
+ * @returns {Boolean} <code>true</code> if the current page is a “view Sone”
+ *          page, <code>false</code> otherwise
+ */
+function isViewSonePage() {
+       return getPageId() == "view-sone";
+}
+
+/**
+ * Returns the ID of the currently shown Sone. This will only return a sensible
+ * value if isViewSonePage() returns <code>true</code>.
+ *
+ * @returns The ID of the currently shown Sone
+ */
+function getSoneId() {
+       return $("#sone .sone-id").text();
+}
+
 var loadedPosts = {};
 var loadedReplies = {};
 
index 534c5ff..b736f8d 100644 (file)
@@ -1,5 +1,8 @@
 <%include include/head.html>
 
+       <div class="page-id hidden">view-sone</div>
+       <div class="sone-id hidden"><% sone.id|html></div>
+
        <%ifnull sone>
 
                <h1><%= Page.ViewSone.Page.TitleWithoutSone|l10n|html></h1>