web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 06 Jul 2010 09:42:13 +0200
branchstable
changeset 5898 5630bd8f98d9
parent 1419 7ff24154351d
permissions -rw-r--r--
imported patch rql2sqlfix.diff

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