Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
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
Hardik Juneja
jio-main
Commits
e4c1e6ed
Commit
e4c1e6ed
authored
Aug 08, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jio.js and complex_queries.js updated
parent
88a73c47
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
33 deletions
+24
-33
complex_queries.js
complex_queries.js
+12
-23
jio.js
jio.js
+12
-10
No files found.
complex_queries.js
View file @
e4c1e6ed
...
...
@@ -9,10 +9,17 @@
*
* @module complex_queries
*/
var
complex_queries
;
(
function
()
{
// define([module_name], [dependencies], module)
;
(
function
(
module
)
{
"
use strict
"
;
var
to_export
=
{},
module_name
=
"
complex_queries
"
;
if
(
typeof
define
===
'
function
'
&&
define
.
amd
)
{
return
define
(
module
);
}
window
.
complex_queries
=
module
();
}(
function
()
{
"
use strict
"
;
var
to_export
=
{};
/**
* Add a secured (write permission denied) property to an object.
*
...
...
@@ -1593,23 +1600,5 @@ query_class_dict.complex = ComplexQuery;
_export
(
"
ComplexQuery
"
,
ComplexQuery
);
if
(
typeof
define
===
"
function
"
&&
define
.
amd
)
{
define
(
to_export
);
}
else
if
(
typeof
window
===
"
object
"
)
{
Object
.
defineProperty
(
window
,
module_name
,
{
configurable
:
false
,
enumerable
:
true
,
writable
:
false
,
value
:
to_export
});
}
else
if
(
typeof
exports
===
"
object
"
)
{
var
i
;
for
(
i
in
to_export
)
{
if
(
to_export
.
hasOwnProperty
(
i
))
{
exports
[
i
]
=
to_export
[
i
];
}
}
}
else
{
complex_queries
=
to_export
;
}
}());
return
to_export
;
}));
jio.js
View file @
e4c1e6ed
...
...
@@ -4,9 +4,17 @@
* http://www.gnu.org/licenses/lgpl.html
*/
(
function
(
scope
,
hex_md5
)
{
// define([module_name], [dependencies], module);
(
function
(
dependencies
,
module
)
{
"
use strict
"
;
var
localstorage
;
if
(
typeof
define
===
'
function
'
&&
define
.
amd
)
{
return
define
(
dependencies
,
module
);
}
window
.
jIO
=
module
({
hex_md5
:
hex_md5
});
}([
'
md5
'
],
function
(
md5
)
{
"
use strict
"
;
var
localstorage
,
hex_md5
=
md5
.
hex_md5
;
if
(
typeof
localStorage
!==
"
undefined
"
)
{
localstorage
=
{
getItem
:
function
(
item
)
{
...
...
@@ -2841,11 +2849,5 @@ var jioNamespace = (function (spec) {
return
that
;
}());
Object
.
defineProperty
(
scope
,
"
jIO
"
,
{
configurable
:
false
,
enumerable
:
false
,
writable
:
false
,
value
:
jioNamespace
});
}(
window
,
hex_md5
));
return
jioNamespace
;
}));
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