web/data/cubicweb.bookmarks.js
author Stephanie Marcu <stephanie.marcu@logilab.fr>
Tue, 19 Jan 2010 10:42:47 +0100
changeset 4258 16804a4f555d
parent 1419 7ff24154351d
permissions -rw-r--r--
with cw 3.6 we've to specify entity's relation role

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