-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Description
would be nice to have some way to call a function after typing is done. I edited 3 places, now I can set $.typer.options.OnDoneTyping before the typing begins
Line 14:
var
options = {
highlightSpeed : 20,
typeSpeed : 100,
clearDelay : 500,
typeDelay : 200,
clearOnHighlight : true,
typerDataAttr : 'data-typer-targets',
typerInterval : 2000,
OnDoneTyping : null
},
Line 77:
if (!text || text.length === 0) {
clearData($e);
onDoneTyping();
return;
}
Line 258:
onDoneTyping = function () {
if(typeof $.typer.options.OnDoneTyping == 'function') {
$.typer.options.OnDoneTyping();
}
};
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels