web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 12 May 2010 09:29:53 +0200
branchstable
changeset 5515 513af9be9e37
parent 1419 7ff24154351d
permissions -rw-r--r--
[config] rename remaining inputlevel to level in option definitions, as expected by lgc >= 0.50

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