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