Skip to content

Commit 4245b60

Browse files
committed
a[pt++] |= .... fix for java.io.StreamTokenizer
1 parent 9cb18bc commit 4245b60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
-9.07 KB
Binary file not shown.

sources/net.sf.j2s.java.core/srcjs/swingjs2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13092,6 +13092,7 @@ J2S._getResourcePath = function(path, isJavaPath) {
1309213092

1309313093
// Google closure compiler cannot handle Clazz.new or Clazz.super
1309413094

13095+
// BH 4/16/2018 6:14:10 PM msie flag in monitor
1309513096
// BH 2/22/2018 12:34:07 AM array.clone() fix
1309613097
// BH 2/20/2018 12:59:28 AM adds Character.isISOControl
1309713098
// BH 2/13/2018 6:24:44 AM adds String.copyValueOf (two forms)
@@ -15321,8 +15322,7 @@ var setAlpha = function (alpha) {
1532115322
fadeOutTimer = null;
1532215323
}
1532315324
fadeAlpha = alpha;
15324-
var ua = navigator.userAgent.toLowerCase();
15325-
monitorEl.style.filter = "Alpha(Opacity=" + alpha + ")";
15325+
//monitorEl.style.filter = "Alpha(Opacity=" + alpha + ")";
1532615326
monitorEl.style.opacity = alpha / 100.0;
1532715327
};
1532815328
/* private */

0 commit comments

Comments
 (0)