Using jQuery to append a script tag to the document will cause it to load the script with async:false and trigger this warning.
As in:
var script = $("<script></script>");
script.attr("src", player.basepath + "whatever.js");
$(document.body).append(script);