Commit 859de27f authored by Tristan Cavelier's avatar Tristan Cavelier

fakestorage and missing dependencies 'jio' -> fixed

parent bf77aeaa
/*jslint indent: 2, maxlen: 80, nomen: true */ /*jslint indent: 2, maxlen: 80, nomen: true */
/*global define, exports, window, jIO */ /*global define, exports, window, require, jIO */
(function (dependencies, module) { (function (dependencies, module) {
"use strict"; "use strict";
...@@ -7,13 +7,13 @@ ...@@ -7,13 +7,13 @@
return define(dependencies, module); return define(dependencies, module);
} }
if (typeof exports === 'object') { if (typeof exports === 'object') {
module(exports); module(exports, require('jio'));
} }
if (typeof window === 'object') { if (typeof window === 'object') {
window.fake_storage = {}; window.fake_storage = {};
module(window.fake_storage); module(window.fake_storage, jIO);
} }
}(['exports'], function (exports) { }(['exports', 'jio'], function (exports, jIO) {
"use strict"; "use strict";
var fakestorage = {}; var fakestorage = {};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment