Found a fix for the unwanted blinking caret in Internet Explorer browsers (IE9 through IE11, the last version of IE)

This commit is contained in:
Jeff 2017-07-21 11:34:25 -07:00 committed by Jeff Parsons
commit b7e424a46c
14 changed files with 1282 additions and 1248 deletions

View file

@ -1058,11 +1058,11 @@ class Component {
* Why do we throw an Error only to immediately catch and ignore it? Simply to give
* any IDE the opportunity to inspect the application's state. Even when the IDE has
* control, you should still be able to invoke Debugger commands from the IDE's REPL,
* using the '$' global function that the Debugger constructor defines; eg:
* using the global function that the Debugger constructor defines; eg:
*
* $('r')
* $('dw 0:0')
* $('h')
* pcx86('r')
* pcx86('dw 0:0')
* pcx86('h')
* ...
*
* If you have no desire to stop on assertions, consider this a no-op. However, another

View file

@ -2,7 +2,7 @@
/* @author Jeff Parsons (@jeffpar)
@website http://www.pcjs.org/
@created 2013-05-05
@modified 2014-03-12
@modified 2017-07-21
@license http://www.gnu.org/licenses/gpl.html
*/
@ -217,7 +217,7 @@
font-size: medium;
background: rgba(0, 0, 0, .5);
opacity: 0;
line-height: 0; /* try to prevent Safari on iOS from always displaying a blinking cursor */
line-height: 0; /* try to prevent Safari on iOS from always displaying a blinking caret */
}
.pcjs-reference {
float: left;