mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-19 23:51:01 +00:00
commit
05824223a9
3 changed files with 13 additions and 2 deletions
|
@ -327,7 +327,7 @@ class Poche
|
||||||
/**
|
/**
|
||||||
* Call action (mark as fav, archive, delete, etc.)
|
* Call action (mark as fav, archive, delete, etc.)
|
||||||
*/
|
*/
|
||||||
public function action($action, Url $url, $id = 0, $import = FALSE)
|
public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE)
|
||||||
{
|
{
|
||||||
switch ($action)
|
switch ($action)
|
||||||
{
|
{
|
||||||
|
@ -358,7 +358,11 @@ class Poche
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$import) {
|
if (!$import) {
|
||||||
|
if ($autoclose == TRUE) {
|
||||||
Tools::redirect('?view=home');
|
Tools::redirect('?view=home');
|
||||||
|
} else {
|
||||||
|
Tools::redirect('?view=home&closewin=true');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'delete':
|
case 'delete':
|
||||||
|
|
|
@ -8,3 +8,4 @@
|
||||||
<link rel="stylesheet" href="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/css/messages.css" media="all">
|
<link rel="stylesheet" href="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/css/messages.css" media="all">
|
||||||
<link rel="stylesheet" href="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/css/print.css" media="print">
|
<link rel="stylesheet" href="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/css/print.css" media="print">
|
||||||
<script src="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/js/jquery-2.0.3.min.js"></script>
|
<script src="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/js/jquery-2.0.3.min.js"></script>
|
||||||
|
<script src="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/js/autoClose.js"></script>
|
6
themes/default/js/autoClose.js
Normal file
6
themes/default/js/autoClose.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
$(document).ready(function() {
|
||||||
|
current_url = window.location.href
|
||||||
|
if (current_url.match("&closewin=true")) {
|
||||||
|
window.close();
|
||||||
|
}
|
||||||
|
});
|
Loading…
Reference in a new issue