1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-23 20:54:23 +01:00

Merge pull request #208 from owncloud/backport-179-stable8.2

[backport] [stable8.2] autoclosing bookmarklet
This commit is contained in:
blizzz 2015-11-05 19:58:44 +01:00
commit 0859ce1d8c

View File

@ -50,10 +50,10 @@ $(document).ready(function () {
},
success: function (data) {
if (data.status === 'success') {
$('#bookmarklet_form').html("");
OC.dialogs.alert(
t("bookmarks", "Bookmark added. You can close the window now."),
t("bookmarks", "Bookmark added successfully"), closeWindow, true);
OC.dialogs.message("Bookmark added.", "Success", undefined, [], undefined, true)
_.delay(function() {
window.close();
}, 1e3);
} else {
OC.dialogs.alert(t("bookmarks", "Some Error happened."),
t("bookmarks", "Error"), null, true);
@ -71,7 +71,3 @@ $(document).ready(function () {
});
});
});
function closeWindow() {
window.close();
}