Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
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
Boris Kocherov
web-apps
Commits
bfecf9d5
Commit
bfecf9d5
authored
Nov 18, 2016
by
Maxim Kadushkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved module dependencies
parent
9e9e738d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
260 additions
and
254 deletions
+260
-254
apps/common/Analytics.js
apps/common/Analytics.js
+29
-27
apps/common/Gateway.js
apps/common/Gateway.js
+197
-194
apps/common/mobile/utils/extendes.js
apps/common/mobile/utils/extendes.js
+34
-33
No files found.
apps/common/Analytics.js
View file @
bfecf9d5
...
...
@@ -35,7 +35,8 @@ if (Common === undefined)
Common
.
component
=
Common
.
component
||
{};
Common
.
Analytics
=
Common
.
component
.
Analytics
=
new
(
function
()
{
define
([
'
jquery
'
],
function
(
$
){
Common
.
Analytics
=
Common
.
component
.
Analytics
=
new
(
function
()
{
var
_category
;
return
{
...
...
@@ -83,4 +84,5 @@ Common.Analytics = Common.component.Analytics = new(function() {
_gaq
.
push
([
'
_trackEvent
'
,
_category
,
action
,
label
,
value
]);
}
}
})();
\ No newline at end of file
})();
});
apps/common/Gateway.js
View file @
bfecf9d5
...
...
@@ -30,11 +30,13 @@
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
if
(
Common
===
undefined
)
{
var
Common
=
{};
}
Common
.
Gateway
=
new
(
function
()
{
define
([
'
jquery
'
],
function
(
$
)
{
Common
.
Gateway
=
new
(
function
()
{
var
me
=
this
,
$me
=
$
(
me
);
...
...
@@ -250,4 +252,5 @@ Common.Gateway = new(function() {
}
}
})();
\ No newline at end of file
})();
});
apps/common/mobile/utils/extendes.js
View file @
bfecf9d5
...
...
@@ -39,8 +39,9 @@
*
*/
(
function
()
{
define
(
[
'
jquery
'
,
'
underscore
'
,
'
framework7
'
],
function
()
{
//Extend jQuery functions
jQuery
.
fn
.
extend
(
{
single
:
function
(
types
,
selector
,
data
,
fn
)
{
...
...
@@ -78,5 +79,5 @@
},
buffer
);
};
};
})();
\ No newline at end of file
}
);
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