We will try downloading those files and inspect the licenses to see what
our options are. Other ideas for us might be remove the requirement of those
files or make a new local alert.as / inherit existing ones to change that
behavior. Some of the browsers seem to work regardless of the error and some
do not. One solution to remove a TypeError, would be to check the existence of
the "window.dialogPolyfill" before the direct use of it [1].
BTW I do appreciate your effort in assisting with troubleshooting ideas. :)
Unrequired background info:
The DoD and/or sub organizations block a lot of sites... for sites that are
more commonly understood for this thread are things like github.com, nabble,
youtube, twitter, facebook, personal email sites such as gmail to name a few
that are all blocked. They do that for security reasons and to make it more
difficult to transfer files outside of official means. So in other words
there's nothing to fix connectivity wise other than to get the files we need in
through official channels and store them locally. Which is why I first asked
about having dependencies distributed with the sdk.
[1]
window["dialogPolyfill"]["registeredDialog"](this.orq_apache_royale_jewel_Alert_dialog);
to
//Checking for having a value vice the undefined / null.
if (window["dialogPolyfill"])
{
window["dialogPolyfill"]["registeredDialog"](this.orq_apache_royale_jewel_Alert_dialog);
}
-Mark K