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
b3826780
Commit
b3826780
authored
Nov 21, 2016
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DE mobile] Remove objects.
parent
939c50e6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
apps/documenteditor/mobile/app/controller/DocumentHolder.js
apps/documenteditor/mobile/app/controller/DocumentHolder.js
+1
-1
apps/documenteditor/mobile/app/controller/edit/EditChart.js
apps/documenteditor/mobile/app/controller/edit/EditChart.js
+2
-1
apps/documenteditor/mobile/app/controller/edit/EditImage.js
apps/documenteditor/mobile/app/controller/edit/EditImage.js
+2
-1
apps/documenteditor/mobile/app/controller/edit/EditShape.js
apps/documenteditor/mobile/app/controller/edit/EditShape.js
+2
-1
No files found.
apps/documenteditor/mobile/app/controller/DocumentHolder.js
View file @
b3826780
...
...
@@ -99,7 +99,7 @@ define([
}
else
if
(
'
paste
'
==
eventName
)
{
me
.
api
.
Paste
();
}
else
if
(
'
delete
'
==
eventName
)
{
console
.
debug
(
'
IMPLEMENT: Delete fragment
'
);
me
.
api
.
asc_Remove
(
);
}
else
if
(
'
edit
'
==
eventName
)
{
me
.
view
.
hideMenu
();
...
...
apps/documenteditor/mobile/app/controller/edit/EditChart.js
View file @
b3826780
...
...
@@ -317,7 +317,8 @@ define([
},
onRemoveChart
:
function
()
{
console
.
debug
(
'
REMOVE Chart!!!
'
);
this
.
api
.
asc_Remove
();
DE
.
getController
(
'
EditContainer
'
).
hideModal
();
},
onReorder
:
function
(
e
)
{
...
...
apps/documenteditor/mobile/app/controller/edit/EditImage.js
View file @
b3826780
...
...
@@ -200,7 +200,8 @@ define([
},
onRemoveImage
:
function
()
{
console
.
debug
(
'
REMOVE image!!!
'
);
this
.
api
.
asc_Remove
();
DE
.
getController
(
'
EditContainer
'
).
hideModal
();
},
onWrapType
:
function
(
e
)
{
...
...
apps/documenteditor/mobile/app/controller/edit/EditShape.js
View file @
b3826780
...
...
@@ -276,7 +276,8 @@ define([
// Handlers
onRemoveShape
:
function
()
{
console
.
debug
(
'
REMOVE SHAPE!!!
'
);
this
.
api
.
asc_Remove
();
DE
.
getController
(
'
EditContainer
'
).
hideModal
();
},
onReorder
:
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