web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 08 Jun 2009 20:37:03 +0200
branchstable
changeset 2064 a5cd3a92314a
parent 1419 7ff24154351d
permissions -rw-r--r--
properly call [re]set_pool, fix connection handling so we have a change to get cw running on top of a sqlite dabase with threads activated

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