Skip to content

Commit a6f5857

Browse files
committed
Add MMU to clients
1 parent eb341ef commit a6f5857

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

_includes/client-list.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ <h3 class="client-list-title">Trusted by:</h3>
6666
<a href="http://www.bbc.co.uk/"> <img src="/img/content/clients/bbc.png" class="client-list__logo" alt="" title="BBC" /> </a>
6767
</li>
6868

69+
<li class="client-list__item">
70+
<a href="http://www2.mmu.ac.uk/"> <img src="/img/content/clients/mmu.png" class="client-list__logo" alt="" title="Manchester Metropolitan University" /> </a>
71+
</li>
72+
6973
<li class="client-list__item">
7074
<a href="http://www.ed.ac.uk/"> <img src="/img/content/clients/uni-of-edinburgh.png" class="client-list__logo" alt="" title="University of Edinburgh" /> </a>
7175
</li>

img/content/clients/mmu.png

4.85 KB
Loading

sw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var cacheName = 'csswizardry:0021';
1+
var cacheName = 'csswizardry:0022';
22
var cacheFiles = [
33
'/',
44
'/about/',
@@ -53,7 +53,7 @@ self.addEventListener('fetch', function(event) {
5353
// Empty out any caches that don’t match the ones listed.
5454
self.addEventListener('activate', function(event) {
5555

56-
var cacheWhitelist = ['csswizardry:0021'];
56+
var cacheWhitelist = ['csswizardry:0022'];
5757

5858
event.waitUntil(
5959
caches.keys().then(function(cacheNames) {

0 commit comments

Comments
 (0)