web/data/cubicweb.bookmarks.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 09 Mar 2010 11:27:41 +0100
branchstable
changeset 4846 a2fb82770fa6
parent 1419 7ff24154351d
permissions -rw-r--r--
[widget] allow to specify hour/minute separator on the JQueryTimePicker (vgodard patch)

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