mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-22 16:30:11 +00:00
Wrap rasterize.js in IIFE / satisfy jsHint.
This commit is contained in:
parent
97ebecd84a
commit
840d17c67b
@ -1,5 +1,8 @@
|
|||||||
// Exemplar script for generating documents with Phantom.js.
|
// Exemplar script for generating documents with Phantom.js.
|
||||||
// https://raw.githubusercontent.com/ariya/phantomjs/master/examples/rasterize.js
|
// https://raw.githubusercontent.com/ariya/phantomjs/master/examples/rasterize.js
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
var page = require('webpage').create(),
|
var page = require('webpage').create(),
|
||||||
system = require('system'),
|
system = require('system'),
|
||||||
@ -49,3 +52,5 @@ if (system.args.length < 3 || system.args.length > 5) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}());
|
||||||
|
Loading…
Reference in New Issue
Block a user