Drupal 7: Remove protocol for HTML5 shiv to support both http and https. The problem is that the HTML5 shiv that is pulled from Google code was hard coded to use http (
http://html5shiv.googlecode.com/svn/trunk/html5.js) which can cause the browser to throw a warning that some external resources might not be secure. This insecure browser issue is only a problem with IE8 and below because this code is only used within those browsers. I don't know much about theming within drupal 7 so how can I find (
http://html5shiv.googlecode.com/svn/trunk/html5.js) within the Drupal source code so that I can get rid of this http reference? I did a global search for "html5shim" within the root of my drupal installation but I did not find anything. I know that it must be their somewhere because IE8 shows a reference to it when viewing my drupal pages.