objectManager: Fix lower-case letter in 'email Text'
[NewAppDB.git] / utils.js
blob8d959727e85e28a0dd7b46671b99a96a9b7e2fc6
1 /*
2   Misc JavaScipt for WineHQ
3 */
5 // include a file from js scripts dir
6 function include_dom (script_filename) {
7     var html_doc = document.getElementsByTagName('head').item(0);
8     var js = document.createElement('script');
9     js.setAttribute('language', 'javascript');
10     js.setAttribute('type', 'text/javascript');
11     js.setAttribute('src', script_filename);
12     html_doc.appendChild(js);
13     return false;
16 // load and execute jquery IE6 PNG fix
17 include_dom("jquery.pngfix.js");
18 jQuery(function($) {
19     $("img[@src$=png]").pngfix(); /* all img tags with .png extension */
20     $("#tabs li").pngfix(); /* top tabs li backgrounds */
21 });
23 // done