aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy-dark/theme.php
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-03-25 03:22:16 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-03-25 03:22:16 -0400
commit2c4312012995aa3411cf5e5dbd0eb934a0801797 (patch)
tree5f46db59a7c9101623d6fed08f09579891763f73 /view/theme/dispy-dark/theme.php
parent84686a26986e4d57093e48523b444dcd4f17c392 (diff)
downloadvolse-hubzilla-2c4312012995aa3411cf5e5dbd0eb934a0801797.tar.gz
volse-hubzilla-2c4312012995aa3411cf5e5dbd0eb934a0801797.tar.bz2
volse-hubzilla-2c4312012995aa3411cf5e5dbd0eb934a0801797.zip
dispy-dark not experimental. start implementing fpostit
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'view/theme/dispy-dark/theme.php')
-rw-r--r--view/theme/dispy-dark/theme.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php
index ad7780013..cded68c48 100644
--- a/view/theme/dispy-dark/theme.php
+++ b/view/theme/dispy-dark/theme.php
@@ -127,3 +127,30 @@ $(document).ready(function() {
</script>
EOT;
+function dispy_community_info() {
+ $a = get_app();
+
+ $fostitJS = "javascript: (function() {
+ the_url = '".$a->get_baseurl($ssl_state)."/view/theme/dispy-dark/fpostit/fpostit.php?url=' +
+ encodeURIComponent(window.location.href) + '&title=' + encodeURIComponent(document.title) + '&text=' +
+ encodeURIComponent(''+(window.getSelection ? window.getSelection() : document.getSelection ?
+ document.getSelection() : document.selection.createRange().text));
+ a_funct = function() {
+ if (!window.open(the_url, 'fpostit', 'location=yes,links=no,scrollbars=no,toolbar=no,width=600,height=300')) {
+ location.href = the_url;
+ }
+ if (/Firefox/.test(navigator.userAgent)) {
+ setTimeout(a_funct, 0)
+ } else {
+ a_funct();
+ }
+ })();" ;
+
+ $aside['$fostitJS'] = $fostitJS;
+ $url = $a->get_baseurl($ssl_state);
+ $aside['$url'] = $url;
+
+ $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl');
+ $a->page['right_aside'] = replace_macros($tpl, $aside);
+}
+