From 363bc4eb8642d464cc0c099f7ab72a425b56b463 Mon Sep 17 00:00:00 2001 From: banux Date: Sun, 27 Oct 2013 07:37:05 +0100 Subject: Add a autoclose parameters. When we use sharing method in plugins like the tiny tiny rss one or the firefox plugins we can passe the autoclose=true parameters that close the popup. --- themes/default/_head.twig | 1 + themes/default/js/autoClose.js | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 themes/default/js/autoClose.js (limited to 'themes') diff --git a/themes/default/_head.twig b/themes/default/_head.twig index d0cbd320..577cc693 100644 --- a/themes/default/_head.twig +++ b/themes/default/_head.twig @@ -8,3 +8,4 @@ + \ No newline at end of file diff --git a/themes/default/js/autoClose.js b/themes/default/js/autoClose.js new file mode 100644 index 00000000..3035d423 --- /dev/null +++ b/themes/default/js/autoClose.js @@ -0,0 +1,6 @@ +$(document).ready(function() { + current_url = window.location.href + if (current_url.match("&autoclose=true")) { + window.close(); + } +}); \ No newline at end of file -- cgit v1.2.3