Skip to content

Instantly share code, notes, and snippets.

@piecyk
Last active October 9, 2015 18:43
Show Gist options
  • Select an option

  • Save piecyk/c7dea56e16389c8f35ef to your computer and use it in GitHub Desktop.

Select an option

Save piecyk/c7dea56e16389c8f35ef to your computer and use it in GitHub Desktop.
function JQConsole(outer_container, header, prompt_label, prompt_continue_label) {};
JQConsole.prototype.ResetHistory = function() {};
JQConsole.prototype.ResetShortcuts = function() {};
JQConsole.prototype.ResetMatchings = function() {};
JQConsole.prototype.Reset = function() {};
JQConsole.prototype.GetHistory = function() {};
JQConsole.prototype.SetHistory = function(history) {};
/*------------------------ Shortcut Methods ----------------------------- */
JQConsole.prototype._CheckKeyCode = function(key_code) {};
JQConsole.prototype._LetterCaseHelper = function(key_code, callback) {};
JQConsole.prototype.RegisterShortcut = function(key_code, callback) {};
JQConsole.prototype.UnRegisterShortcut = function(key_code, handler) {};
/*---------------------- END Shortcut Methods --------------------------- */
JQConsole.prototype.GetColumn = function() {};
JQConsole.prototype.GetLine = function() {};
JQConsole.prototype.ClearPromptText = function(clear_label) {};
JQConsole.prototype.GetPromptText = function(full) {};
JQConsole.prototype.SetPromptText = function(text) {};
JQConsole.prototype.SetPromptLabel = function(main_label, continue_label) {};
JQConsole.prototype.UpdatePromptLabel = function() {};
JQConsole.prototype.Write = function(text, cls, escape) {};
JQConsole.prototype.Append = function(node) {};
JQConsole.prototype.Input = function(input_callback) {};
JQConsole.prototype.Prompt = function(history_enabled, result_callback, multiline_callback, async_multiline) {};
JQConsole.prototype.AbortPrompt = function() {};
JQConsole.prototype.Focus = function() {};
JQConsole.prototype.SetIndentWidth = function(width) {};
JQConsole.prototype.GetIndentWidth = function() {};
JQConsole.prototype.RegisterMatching = function(open, close, cls) {};
JQConsole.prototype.UnRegisterMatching = function(open, close) {};
JQConsole.prototype.Dump = function() {};
JQConsole.prototype.GetState = function() {};
JQConsole.prototype.Disable = function() {};
JQConsole.prototype.Enable = function() {};
JQConsole.prototype.IsDisabled = function() {};
JQConsole.prototype.MoveToStart = function(all_lines) {};
JQConsole.prototype.MoveToEnd = function(all_lines) {};
JQConsole.prototype.Clear = function() {};
$.fn.jqconsole = function(header, prompt_main, prompt_continue) {};
$.fn.jqconsole.JQConsole;
$.fn.jqconsole.Ansi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment