Migrate from node-webkit to NW.js.
[pwl6.git] / src / yuu / core.js
index 1d64e98..e770f86 100644 (file)
                 req[k] = params[k];
             req.onload = function () {
                 var status = this.status;
-                // status === 0 is given by node-webkit for success.
+                // status === 0 is given by NW.js for success.
                 if ((status >= 200 && status < 300) || status === 0)
                     resolve(this.response);
                 else