Skip to content

Commit

Permalink
added license info
Browse files Browse the repository at this point in the history
  • Loading branch information
alexscheelmeyer committed Jul 5, 2012
1 parent 021dcb0 commit 74bc973
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,9 @@ phantom.create(function(err,ph) {
});
```

You can also have a look at the test folder to see some examples of using the API.
You can also have a look at the test folder to see some examples of using the API.

Other
-----
Made by Alex Scheel Meyer. Released to the public domain.

2 changes: 2 additions & 0 deletions bridge.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//Released to the pubic domain.

var port=phantom.args[0];
var webpage=require('webpage');
var controlpage=webpage.create();
Expand Down
3 changes: 2 additions & 1 deletion phantom-node.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//Released to the pubic domain.

var http=require('http');
var socketio=require('socket.io');
var child=require('child_process');
Expand All @@ -15,7 +17,6 @@ module.exports={
return console.log('phantom stdout: '+data);
});
phantom.stderr.on('data',function(data){
if (data.toString('utf8').match(/No such method.*socketSentData/)) return;
return console.warn('phantom stderr: '+data);
});
return phantom;
Expand Down

0 comments on commit 74bc973

Please sign in to comment.