Show
Ignore:
Timestamp:
09/17/11 23:08:11 (2 years ago)
Author:
mbrevda
Message:

re #5342 - polyfill for progress bar for ie lte 10

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/views/footer.php

    r12518 r12526  
    130130  $html .= str_replace(array("\t", "\n"), '', $ga); 
    131131} 
     132 
     133//add ie specifc syling polyfills 
     134$html .= '<!--[if lte IE 10]>'; 
     135$html .= '<link rel="stylesheet" href="assets/css/progress-polyfill.css" type="text/css">'; 
     136$html .= '<script type="text/javascript" src="assets/js/progress-polyfill.min.js"></script>'; 
     137$html .= '<![endif]-->'; 
    132138echo $html; 
    133139?>