web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 07 Jun 2010 13:08:53 +0200
branchstable
changeset 5677 1ccaa9247860
parent 1419 7ff24154351d
permissions -rw-r--r--
Added tag cubicweb-version-3.8.3 for changeset 7e6c6a2a272d

CubicWeb.require('ajax.js');

function removeBookmark(beid) {
    d = asyncRemoteExec('delete_bookmark', beid);
    d.addCallback(function(boxcontent) {
	    reloadComponent('bookmarks_box', '', 'boxes', 'bookmarks_box');
  	document.location.hash = '#header';
 	updateMessage(_("bookmark has been removed"));
    });
}