web/data/cubicweb.bookmarks.js
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Fri, 16 Oct 2009 18:35:24 +0200
branchstable
changeset 3711 486a29d66f2a
parent 1419 7ff24154351d
permissions -rw-r--r--
work around a problem in constraint application

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