web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 30 Apr 2010 14:34:56 +0200
changeset 5447 f29dafba250a
parent 1419 7ff24154351d
permissions -rw-r--r--
[vreg repo] shouldn't call init_registration in on hook registry bootstrap, already done before

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