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
a426f215
Commit
a426f215
authored
Dec 21, 2016
by
Maxim Kadushkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE Mobile] debug Functions page
parent
528ff8ee
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
9 deletions
+16
-9
apps/common/mobile/resources/less/ios/_container.less
apps/common/mobile/resources/less/ios/_container.less
+11
-4
apps/spreadsheeteditor/mobile/app-dev.js
apps/spreadsheeteditor/mobile/app-dev.js
+1
-1
apps/spreadsheeteditor/mobile/app/template/AddFunction.template
...preadsheeteditor/mobile/app/template/AddFunction.template
+1
-1
apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js
apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js
+3
-3
No files found.
apps/common/mobile/resources/less/ios/_container.less
View file @
a426f215
...
...
@@ -6,10 +6,8 @@
}
.page-content {
.list-block, .content-block {
&:first-child {
margin-top: -1px;
}
.list-block:first-child {
margin-top: -1px;
}
}
}
...
...
@@ -69,6 +67,15 @@
border-radius: 13px;
}
}
.content-block:first-child {
margin-top: 0;
.content-block-inner {
&:before {
height: 0;
}
}
}
}
.categories {
...
...
apps/spreadsheeteditor/mobile/app-dev.js
View file @
a426f215
...
...
@@ -117,9 +117,9 @@ require([
'
Editor
'
,
'
Toolbar
'
,
'
Search
'
,
'
CellEditor
'
,
'
Main
'
,
'
DocumentHolder
'
,
'
CellEditor
'
,
'
Statusbar
'
,
'
Settings
'
,
'
EditContainer
'
...
...
apps/spreadsheeteditor/mobile/app/template/AddFunction.template
View file @
a426f215
...
...
@@ -83,7 +83,7 @@
</div>
<div class="page">
<div class="page-content">
<div class="
lis
t-block">
<div class="
conten
t-block">
<div class="content-block-inner">
<h3><%= args %></h3>
<p><%= descr %></p>
...
...
apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js
View file @
a426f215
...
...
@@ -86,7 +86,7 @@ define([
var
me
=
this
;
$
(
'
.settings
'
).
single
(
'
click
'
,
'
.function .info
'
,
this
.
onFunctionInfoClick
.
bind
(
this
))
.
single
(
'
click
'
,
'
.function > a
'
,
this
.
onFunctionClick
.
bind
(
this
));
.
on
(
'
click
'
,
'
.function > a
'
,
this
.
onFunctionClick
.
bind
(
this
));
$
(
'
.groups a.group
'
).
single
(
'
click
'
,
this
.
onGroupClick
.
bind
(
this
));
me
.
initControls
();
...
...
@@ -142,8 +142,8 @@ define([
},
onFunctionClick
:
function
(
e
)
{
if
(
!
/
\.
info/
.
test
(
e
.
target
)
)
this
.
fireEvent
(
'
function:insert
'
,
[
$
(
e
.
t
arget
).
data
(
'
func
'
)]);
// if ( !/info/.test(e.target.className
) )
this
.
fireEvent
(
'
function:insert
'
,
[
$
(
e
.
currentT
arget
).
data
(
'
func
'
)]);
},
onFunctionInfoClick
:
function
(
e
)
{
...
...
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