Created
July 31, 2009 18:47
-
-
Save leandrocp/159369 to your computer and use it in GitHub Desktop.
Howto http://ie6update.com/ on CakePHP with local images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- IE6 Update --> | |
<!-- | |
Instructions: | |
1. Download http://ie6update.com/hosted/ie6update.1.0.0.zip | |
2. Copy ie6update.js to app/webroot/js | |
3. Copy images to app/webroot/img | |
--> | |
<!--[if IE 6]> | |
<script type="text/javascript"> | |
var __noconflict = true; | |
var IE6UPDATE_OPTIONS = { | |
icons_path: "<?php echo Helper::webroot('img') . DS ?>", | |
message: "Seu Internet Explorer está desatualizado e pode apresentar problemas. Clique aqui para atualizar." | |
} | |
</script> | |
<?php echo $javascript->link('ie6update'); ?> | |
<![endif]--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment