1/**
2 * @license    http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
3 * @author     Francois Merciol <dokuplugin@merciol.fr>
4 *
5 * Javascript functionality for the tiledblog plugin
6 */
7
8// ========================================
9// Ajax function
10// ========================================
11/* performe ajax request */
12function tiledblogAjax (action, ns) {
13    jQuery.ajax ({
14	type: "POST",
15	url:  DOKU_BASE+"lib/plugins/tiledblog/ajax.php",
16	cache: false,
17	async: true,
18	data: "tiledblog[action]="+action+"&tiledblog[ns]="+ns,
19    });
20}
21
22// ========================================
23