web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 09 Oct 2009 15:10:17 +0200
branchstable
changeset 3625 f03b55a18c43
parent 1419 7ff24154351d
permissions -rw-r--r--
fix bug w/ get_entity and subqueries

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