web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 11 Sep 2009 16:19:58 +0200
branchstable
changeset 3186 24ea70f19a48
parent 1419 7ff24154351d
permissions -rw-r--r--
Added tag cubicweb-version-3.4.9 for changeset e916f1e856c8

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