Fixed
Details
Assignee
Jacob FarberJacob FarberReporter
Colin ClarkColin ClarkComponents
Fix versions
Priority
Major
Details
Details
Assignee
Jacob Farber
Jacob FarberReporter
Colin Clark
Colin ClarkComponents
Fix versions
Priority
Created September 15, 2009 at 9:37 PM
Updated January 14, 2011 at 4:54 PM
Resolved January 14, 2011 at 4:54 PM
The Inline Edit component demo has this code at the top of it:
/**
Customize the undo subcomponent appearance.
@param {Object} that
@param {Object} targetContainer
*/
var myUndoRenderer = function (that, targetContainer) {
var markup = "<span class='flc-undo'>" +
"<span class='flc-undo-undoContainer'><a href='#' class='flc-undo-undoControl'><img src='../../../../integration-demos/sakai/images/undo.png' alt='Undo your edit' title='Undo your edit' style='border:none' /></a></span>" +
"<span class='flc-undo-redoContainer'><a href='#' class='flc-undo-redoControl'><img src='../../../../integration-demos/sakai/images/redo.png' alt='Redo your edit' title='Redo your edit' style='border:none' /></a></span>" +
"</span>";
var markupNode = $(markup);
targetContainer.append(markupNode);
return markupNode;
};
This is Eli's fancy undo/redo markup, but this renderer isn't hooked up anywhere. If we want to use it, we should hook it up, otherwise delete it.