1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-01-22 18:52:10 +01:00

Merge pull request #179 from owncloud/issue-136

Prevent dialog stating "Bookmark added. You can close the window now.…
This commit is contained in:
blizzz 2015-11-05 19:43:58 +01:00
commit 70c0010911

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();
}