Skip to content
Snippets Groups Projects
Commit f72b116d authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Merge pull request #1864 from seanmonstar/cachify-all-the-things

Cachify /about images and html5shim.js

Tests pass, code looks good, items are cached.  Nice work @seanmonstar.

r+

close #1851
close #1861
parents fea2ae63 2a6a4ab0
No related branches found
No related tags found
No related merge requests found
...@@ -131,6 +131,9 @@ exports.resources = { ...@@ -131,6 +131,9 @@ exports.resources = {
'/common/css/ie8.css', '/common/css/ie8.css',
'/dialog/css/ie8.css' '/dialog/css/ie8.css'
], ],
'/production/html5shim.js': [
'/common/js/lib/html5shim.js'
],
'/production/communication_iframe.js': [ '/production/communication_iframe.js': [
'/common/js/lib/jschannel.js', '/common/js/lib/jschannel.js',
'/common/js/lib/winchan.js', '/common/js/lib/winchan.js',
......
...@@ -13,13 +13,13 @@ ...@@ -13,13 +13,13 @@
</div> </div>
<div class="graphic"> <div class="graphic">
<img src="/pages/i/one-password-graphic.png" alt="One password to rule them all."> <img src="<%- cachify('/pages/i/one-password-graphic.png') %>" alt="One password to rule them all.">
</div> </div>
</article> </article>
<article class="blurb flexible"> <article class="blurb flexible">
<div class="graphic first"> <div class="graphic first">
<img src="/pages/i/flexible-graphic.png" alt="Use multiple email addresses"> <img src="<%- cachify('/pages/i/flexible-graphic.png') %>" alt="Use multiple email addresses">
</div> </div>
<div class="info"> <div class="info">
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</article> </article>
</section> </section>
<a href="https://developer.mozilla.org/en/BrowserID/Quick_Setup" class="developers"><img src="/pages/i/developers-link.png" alt="Persona for developers"><span>Implement Persona on your site </span>Developer guides and API documentation</a> <a href="https://developer.mozilla.org/en/BrowserID/Quick_Setup" class="developers"><img src="<%- cachify('/pages/i/developers-link.png') %>" alt="Persona for developers"><span>Implement Persona on your site </span>Developer guides and API documentation</a>
</div><!-- #dashboard --> </div><!-- #dashboard -->
</div> </div>
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width" /> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width" />
<meta name="format-detection" content="email=no" /> <meta name="format-detection" content="email=no" />
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="/common/js/lib/html5shim.js"></script> <%- cachify_js('/production/html5shim.js') %>
<![endif]--> <![endif]-->
<%- cachify_css('/production/browserid.css') %> <%- cachify_css('/production/browserid.css') %>
<!--[if lt IE 9]> <!--[if lt IE 9]>
......
...@@ -23,7 +23,7 @@ suite.addBatch({ ...@@ -23,7 +23,7 @@ suite.addBatch({
var res = resources.resources; var res = resources.resources;
assert.ok(files['/production/dialog.css'].length >= 3); assert.ok(files['/production/dialog.css'].length >= 3);
// Get ride of non-localized asset bundles // Get ride of non-localized asset bundles
['/production/communication_iframe.js', '/production/include.js', '/production/dialog.css', '/production/browserid.css', '/production/ie8_main.css', '/production/ie8_dialog.css', '/production/relay.js'].forEach( ['/production/communication_iframe.js', '/production/include.js', '/production/dialog.css', '/production/browserid.css', '/production/ie8_main.css', '/production/ie8_dialog.css', '/production/relay.js', '/production/html5shim.js'].forEach(
function (nonLocaleAsset) { function (nonLocaleAsset) {
delete res[nonLocaleAsset]; delete res[nonLocaleAsset];
delete files[nonLocaleAsset]; delete files[nonLocaleAsset];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment