This repository was archived by the owner on Nov 28, 2018. It is now read-only.
File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 426
426
updatePromptDisplay ( ) ;
427
427
}
428
428
} ;
429
-
429
+
430
430
function clearCurrentPrompt ( ) {
431
431
extern . promptText ( "" ) ;
432
432
} ;
433
-
433
+
434
434
function clearScreen ( ) {
435
435
inner . children ( ".jquery-console-prompt-box, .jquery-console-message" ) . remove ( ) ;
436
436
extern . report ( " " ) ;
690
690
issueComplete ( ) ;
691
691
}
692
692
} ;
693
-
693
+
694
694
function doCompleteDirectly ( ) {
695
695
if ( typeof config . completeHandle == 'function' ) {
696
696
var completions = config . completeHandle ( promptText ) ;
724
724
}
725
725
}
726
726
} ;
727
-
727
+
728
728
function issueComplete ( ) {
729
729
if ( typeof config . completeIssuer == 'function' ) {
730
730
config . completeIssuer ( promptText ) ;
731
731
}
732
732
} ;
733
-
733
+
734
734
function showCompletion ( promptText , completions ) {
735
735
736
736
var len = completions . length ;
823
823
// Simple utility for printing messages
824
824
$ . fn . filledText = function ( txt ) {
825
825
$ ( this ) . text ( txt ) ;
826
- $ ( this ) . html ( $ ( this ) . html ( ) . replace ( / \n / g, '<br/>' ) ) ;
826
+ $ ( this ) . html ( $ ( this ) . html ( ) . replace ( / \t / g , ' ' ) . replace ( / \ n/ g, '<br/>' ) ) ;
827
827
return this ;
828
828
} ;
829
829
You can’t perform that action at this time.
0 commit comments