Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio_mebibou
Commits
76becacb
Commit
76becacb
authored
Aug 28, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fakestorage and missing dependencies 'jio' -> fixed
parent
a64ad121
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
test/jio/fakestorage.js
test/jio/fakestorage.js
+4
-4
No files found.
test/jio/fakestorage.js
View file @
76becacb
/*jslint indent: 2, maxlen: 80, nomen: true */
/*global define, exports, window, jIO */
/*global define, exports, window,
require,
jIO */
(
function
(
dependencies
,
module
)
{
"
use strict
"
;
...
...
@@ -7,13 +7,13 @@
return
define
(
dependencies
,
module
);
}
if
(
typeof
exports
===
'
object
'
)
{
module
(
exports
);
module
(
exports
,
require
(
'
jio
'
)
);
}
if
(
typeof
window
===
'
object
'
)
{
window
.
fake_storage
=
{};
module
(
window
.
fake_storage
);
module
(
window
.
fake_storage
,
jIO
);
}
}([
'
exports
'
],
function
(
exports
)
{
}([
'
exports
'
,
'
jio
'
],
function
(
exports
,
jIO
)
{
"
use strict
"
;
var
fakestorage
=
{};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment