web/data/cubicweb.bookmarks.js
author Laure Bourgois <Laure.Bourgois@logilab.fr>
Mon, 23 Feb 2009 16:25:59 +0100
changeset 926 6d3d693c0ad5
parent 0 b97547f5f1fa
child 1419 7ff24154351d
permissions -rw-r--r--
removing foaf_usable

CubicWeb.require('ajax.js');

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