We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bad923 commit 994048aCopy full SHA for 994048a
closure/goog/ui/media/flashobject.js
@@ -623,6 +623,9 @@ goog.ui.media.FlashObject.prototype.isLoaded = function() {
623
return true;
624
}
625
626
+ // Use "in" operator to check for PercentLoaded because IE8 throws when
627
+ // accessing directly. See:
628
+ // https://github.com/google/closure-library/pull/373.
629
if ('PercentLoaded' in this.getFlashElement() &&
630
this.getFlashElement().PercentLoaded() == 100) {
631
0 commit comments