diff options
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/default/js/shaarli.js | 4 | ||||
-rw-r--r-- | tpl/default/page.footer.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tpl/default/js/shaarli.js b/tpl/default/js/shaarli.js index b120c91e..4f49affa 100644 --- a/tpl/default/js/shaarli.js +++ b/tpl/default/js/shaarli.js | |||
@@ -606,7 +606,7 @@ function htmlEntities(str) | |||
606 | 606 | ||
607 | function activateFirefoxSocial(node) { | 607 | function activateFirefoxSocial(node) { |
608 | var loc = location.href; | 608 | var loc = location.href; |
609 | var baseURL = loc.substring(0, loc.lastIndexOf("/")); | 609 | var baseURL = loc.substring(0, loc.lastIndexOf("/") + 1); |
610 | 610 | ||
611 | // Keeping the data separated (ie. not in the DOM) so that it's maintainable and diffable. | 611 | // Keeping the data separated (ie. not in the DOM) so that it's maintainable and diffable. |
612 | var data = { | 612 | var data = { |
@@ -619,7 +619,7 @@ function activateFirefoxSocial(node) { | |||
619 | icon32URL: baseURL + "/images/favicon.ico", | 619 | icon32URL: baseURL + "/images/favicon.ico", |
620 | icon64URL: baseURL + "/images/favicon.ico", | 620 | icon64URL: baseURL + "/images/favicon.ico", |
621 | 621 | ||
622 | shareURL: baseURL + "{noparse}?post=%{url}&title=%{title}&description=%{text}&source=firefoxsocialapi{/noparse}", | 622 | shareURL: baseURL + "?post=%{url}&title=%{title}&description=%{text}&source=firefoxsocialapi", |
623 | homepageURL: baseURL | 623 | homepageURL: baseURL |
624 | }; | 624 | }; |
625 | node.setAttribute("data-service", JSON.stringify(data)); | 625 | node.setAttribute("data-service", JSON.stringify(data)); |
diff --git a/tpl/default/page.footer.html b/tpl/default/page.footer.html index 02fc7642..94f771a2 100644 --- a/tpl/default/page.footer.html +++ b/tpl/default/page.footer.html | |||
@@ -9,7 +9,7 @@ | |||
9 | {/if} | 9 | {/if} |
10 | · | 10 | · |
11 | The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community · | 11 | The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community · |
12 | <a href="doc/Home.html" rel="nofollow">Documentation</a> | 12 | <a href="doc/html/index.html" rel="nofollow">Documentation</a> |
13 | {loop="$plugins_footer.text"} | 13 | {loop="$plugins_footer.text"} |
14 | {$value} | 14 | {$value} |
15 | {/loop} | 15 | {/loop} |