web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 29 Jul 2009 11:10:11 +0200
changeset 2561 c6f0634e2d77
parent 1419 7ff24154351d
permissions -rw-r--r--
[F xhml] use a class to avoid duplicated ids when editing several entities at once

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