Skip to content

Commit e76ad61

Browse files
author
John Doherty
committed
updated docs
1 parent 19c774c commit e76ad61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ This project is a rethought, rebranded, relaunched version of my badly named [ex
9797

9898
## License
9999

100-
Licensed under [ISC License](LICENSE) © [John Doherty](https://twitter.com/CambridgeMVP)
100+
Licensed under [ISC License](LICENSE) © [John Doherty](http://www.johndoherty.info)

example/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ function Server() {
1919
app.set('view engine', 'hbs');
2020

2121
// create simple route to test our fake news
22-
app.get('/', function(req, res){
22+
app.get('/', function(req, res) {
2323

2424
// respond to this request with our fake-new content embedded within the BBC News home page
2525
res.merge('fake-news', {
26-
sourceUrl: 'https://www.facebook.com', //http://www.bbc.co.uk/news', // external url to fetch
26+
sourceUrl: 'http://www.bbc.co.uk/news', // external url to fetch
2727
sourcePlaceholder: 'div[data-entityid="container-top-stories#1"]' // css selector to inject our content into
2828
});
2929
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-iframe-replacement",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "NodeJS + Express replacement for the HTML iframe",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)