Skip to content

Commit d61cdf0

Browse files
committed
Update title
1 parent 74415f8 commit d61cdf0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "Write an awesome description for your new site here. You can edit
55
baseurl: ""
66
url: "https://csswizardry.com"
77
future: true
8-
sw: "0016"
8+
sw: "0017"
99

1010
# Build settings
1111
markdown: kramdown

_posts/2017-02-12-base64-encoding-and-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: "Base64 Encoding & Performance, Part 1: What’s Up with Gzip?"
3+
title: "Base64 Encoding & Performance, Part 1: What’s Up with Base64?"
44
date: 2017-02-12 12:11:13
55
categories: Web Development
66
meta: "A look at the many huge disadvantages of Base64 encoding assets into your CSS"

sw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var cacheName = 'csswizardry:0016';
1+
var cacheName = 'csswizardry:0017';
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:0016'];
56+
var cacheWhitelist = ['csswizardry:0017'];
5757

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

0 commit comments

Comments
 (0)