Skip to content

Commit 6c77f03

Browse files
committed
Update for next meetup
1 parent ce856cc commit 6c77f03

File tree

5 files changed

+9
-27
lines changed

5 files changed

+9
-27
lines changed

docs/bundle.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30686,16 +30686,12 @@
3068630686
value: true
3068730687
});
3068830688
var nextMeetup = exports.nextMeetup = {
30689-
date: 'March 08, 2017',
30690-
link: 'https://www.meetup.com/de-DE/Hamburg-AngularJS-Meetup/events/234414332/'
30689+
date: 'April 12, 2017',
30690+
link: 'https://www.meetup.com/Hamburg-AngularJS-Meetup/events/234414335/'
3069130691
};
3069230692

3069330693
var nextTalks = exports.nextTalks = [{
30694-
reserved: true,
30695-
title: 'Making your Angular apps fast',
30696-
speaker: 'Pascal Precht',
30697-
speakerLink: 'https://twitter.com/PascalPrecht',
30698-
description: '\n In this talk we\'ll take a look at an unoptimized Angular application\n and analyse and discuss what can be done to make it faster. We will\n then apply different performance techniques to reach about 60 fps and\n explore their pros and cons.\n\n Pascal is a Software Engineer and Trainer at thoughtram, a Google\n Developer Expert for the Angular team and the creator of the popular\n angular-translate module. He has also written more than 60 articles\n on the thoughtram blog as a technical author.\n '
30694+
reserved: false
3069930695
}, {
3070030696
reserved: false
3070130697
}];

docs/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ try {
2828
logError('Failed to import:', e)
2929
}
3030

31-
const VERSION = '0.6.4'
31+
const VERSION = '0.6.5'
3232
const PREFETCH_CACHE = `ng-hh-prefetch-cache-v${VERSION}`
3333
const RUNTIME_CACHE = `ng-hh-runtime-cache-v${VERSION}`
3434

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular.hamburg",
3-
"version": "0.6.4",
3+
"version": "0.6.5",
44
"description": "The angular.hamburg website for Hamburg's Angular Meetup, jokingly made with React.",
55
"main": "index.js",
66
"scripts": {

src/components/config.js

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,12 @@
11

22
export const nextMeetup = {
3-
date: 'March 08, 2017',
4-
link: 'https://www.meetup.com/de-DE/Hamburg-AngularJS-Meetup/events/234414332/'
3+
date: 'April 12, 2017',
4+
link: 'https://www.meetup.com/Hamburg-AngularJS-Meetup/events/234414335/'
55
}
66

77
export const nextTalks = [
88
{
9-
reserved: true,
10-
title: 'Making your Angular apps fast',
11-
speaker: 'Pascal Precht',
12-
speakerLink: 'https://twitter.com/PascalPrecht',
13-
description: `
14-
In this talk we'll take a look at an unoptimized Angular application
15-
and analyse and discuss what can be done to make it faster. We will
16-
then apply different performance techniques to reach about 60 fps and
17-
explore their pros and cons.
18-
19-
Pascal is a Software Engineer and Trainer at thoughtram, a Google
20-
Developer Expert for the Angular team and the creator of the popular
21-
angular-translate module. He has also written more than 60 articles
22-
on the thoughtram blog as a technical author.
23-
`
9+
reserved: false
2410
},
2511
{
2612
reserved: false

src/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ try {
2828
logError('Failed to import:', e)
2929
}
3030

31-
const VERSION = '0.6.4'
31+
const VERSION = '0.6.5'
3232
const PREFETCH_CACHE = `ng-hh-prefetch-cache-v${VERSION}`
3333
const RUNTIME_CACHE = `ng-hh-runtime-cache-v${VERSION}`
3434

0 commit comments

Comments
 (0)