Skip to content

Commit

Permalink
add copyright to js files
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kerin committed Aug 8, 2013
1 parent 7f90f75 commit 315afb4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
5 changes: 5 additions & 0 deletions assets/echo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
/**
* A very simple phantomjs server, that's used for testing.
* Returns the content of all the requests sent to it.
*
* @package Openbuildings\Spiderling
* @author Ivan Kerin
* @copyright (c) 2013 OpenBuildings Ltd.
* @license http://spdx.org/licenses/BSD-3-Clause
*/

var server, server_port;
Expand Down
9 changes: 8 additions & 1 deletion assets/phantom.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

/**
* Start a phantomjs server for handling Spiderling Phantomjs Driver requests
*
* @package Openbuildings\Spiderling
* @author Ivan Kerin
* @copyright (c) 2013 OpenBuildings Ltd.
* @license http://spdx.org/licenses/BSD-3-Clause
*/
var server, page, system, errors, messages, server_port;

page = require('webpage').create();
Expand Down
9 changes: 8 additions & 1 deletion assets/phantomjs-connection.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
var PhantomjsConnection = (function (document, undefined) {
"use strict";


/**
* @package Openbuildings\Spiderling
* @author Ivan Kerin
* @copyright (c) 2013 OpenBuildings Ltd.
* @license http://spdx.org/licenses/BSD-3-Clause
*/

var ids = [];
var current = 0;

Expand Down

0 comments on commit 315afb4

Please sign in to comment.