mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-24 13:13:44 +00:00
Renaming "url" to "path" for clarity reasons
This commit is contained in:
parent
67d1a4732c
commit
806a44e3c3
1 changed files with 2 additions and 2 deletions
|
|
@ -57,9 +57,9 @@
|
|||
}
|
||||
|
||||
/** @private */
|
||||
function request_fs(url, callback){
|
||||
function request_fs(path, callback){
|
||||
var fs = require('fs');
|
||||
fs.readFile(url, function (err, data) {
|
||||
fs.readFile(path, function (err, data) {
|
||||
if (err) {
|
||||
fabric.log(err);
|
||||
throw err;
|
||||
|
|
|
|||
Loading…
Reference in a new issue