Lines Matching refs:a

74 		//		Because of this, search will have to be a separate config setting.
78 $('a[href *= "?do="]', elt).click(function(e) {
120 $('a', elt).click(function(e) {
133 //TODO: What about pages that aren't in the wiki at all? Forums etc. Use a config field?
143 // 'a[href $= "doku.php?id=' + JSINFO.id + '"], a[href $= "doku.php/' + pathId + '"], a[href = "/' + pathId + '"]'
161 * Preview a page edit without reloading the page.
164 * @param {Form=} sectionForm - If a section is being edited instead of the whole document, this is the form in that section.
212 // section_highlight is a temporary div that wraps around the text when your cursor is
254 * Initialize a page edit. This must be called every time the editor is loaded.
261 // Comatibility: before 2016-06-26a
330 // Position is usually calculated from the editor, which breaks if the editor has a positioned parent.
341 // Do a fast save if we started on 'show' and we're not creating or deleting the page.
361 // Silently remove a possibly saved draft using ajax.
421 * Convert a form to an object suitable for $.post().
433 * Convert a url to an object suitable for $.post().
439 var a = url.replace(/.*\?/, '').split('&');
440 for (var x=0; x<a.length; x++) {
441 var parts = unescape(a[x]).split('=');
456 // Subscribe actions are a special case. Rather than replace the content, they add a success or error message to the top.
459 // data is just a success or error message.
518 // If dates don't match, there's a conflict.
538 // Silently remove a possibly saved draft using ajax.
554 // When ACL fails, a preview is returned.
569 jQuery('a.fn_top').mouseover(dw_page.footnoteDisplay);
579 jQuery('a.fn_top').mouseover(dw_page.footnoteDisplay);
587 * Perform a standard partial AJAX action (edit, history, etc).
677 * Send a "partial" action, used for AJAX editing, previews, subscribe etc.
681 * @param {Function} callback - Call this function, with the content HTML as a parameter, when the action is complete.
704 // Remove all loading spinners, in case a bug let some extras slip in.
722 * Load a new view, using AJAX to avoid page re-load.
724 * @param {String} page - The view to load. This can be 'show,' or the value of a do= action param.
725 * @param {Form=} sectionForm - Only valid when page=='edit' or page=='draft'. Used to edit a section inline.
726 * @param {Object=} params - Additional parameters to pass to the AJAX request. For example, 'rev' if a revision is being edited.