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
e02c4160
Commit
e02c4160
authored
Aug 22, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Bug 35582.
parent
411446a7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
apps/documenteditor/main/app/view/ShapeSettings.js
apps/documenteditor/main/app/view/ShapeSettings.js
+1
-1
apps/presentationeditor/main/app/view/ShapeSettings.js
apps/presentationeditor/main/app/view/ShapeSettings.js
+1
-1
apps/presentationeditor/main/app/view/SlideSettings.js
apps/presentationeditor/main/app/view/SlideSettings.js
+1
-1
apps/presentationeditor/main/app/view/TextArtSettings.js
apps/presentationeditor/main/app/view/TextArtSettings.js
+1
-1
apps/spreadsheeteditor/main/app/view/ShapeSettings.js
apps/spreadsheeteditor/main/app/view/ShapeSettings.js
+1
-1
apps/spreadsheeteditor/main/app/view/TextArtSettings.js
apps/spreadsheeteditor/main/app/view/TextArtSettings.js
+1
-1
No files found.
apps/documenteditor/main/app/view/ShapeSettings.js
View file @
e02c4160
...
...
@@ -1220,7 +1220,7 @@ define([
this
.
fillControls
.
push
(
this
.
btnInsertFromUrl
);
this
.
btnInsertFromFile
.
on
(
'
click
'
,
_
.
bind
(
function
(
btn
){
if
(
this
.
api
)
this
.
api
.
ChangeShapeImageFromFile
();
if
(
this
.
api
)
this
.
api
.
ChangeShapeImageFromFile
(
this
.
BlipFillType
);
this
.
fireEvent
(
'
editcomplete
'
,
this
);
},
this
));
this
.
btnInsertFromUrl
.
on
(
'
click
'
,
_
.
bind
(
this
.
insertFromUrl
,
this
));
...
...
apps/presentationeditor/main/app/view/ShapeSettings.js
View file @
e02c4160
...
...
@@ -1114,7 +1114,7 @@ define([
this
.
fillControls
.
push
(
this
.
btnInsertFromUrl
);
this
.
btnInsertFromFile
.
on
(
'
click
'
,
_
.
bind
(
function
(
btn
){
if
(
this
.
api
)
this
.
api
.
ChangeShapeImageFromFile
();
if
(
this
.
api
)
this
.
api
.
ChangeShapeImageFromFile
(
this
.
BlipFillType
);
this
.
fireEvent
(
'
editcomplete
'
,
this
);
},
this
));
this
.
btnInsertFromUrl
.
on
(
'
click
'
,
_
.
bind
(
this
.
insertFromUrl
,
this
));
...
...
apps/presentationeditor/main/app/view/SlideSettings.js
View file @
e02c4160
...
...
@@ -655,7 +655,7 @@ define([
el
:
$
(
'
#slide-button-from-file
'
)
});
this
.
btnInsertFromFile
.
on
(
'
click
'
,
_
.
bind
(
function
(
btn
){
if
(
this
.
api
)
this
.
api
.
ChangeSlideImageFromFile
();
if
(
this
.
api
)
this
.
api
.
ChangeSlideImageFromFile
(
this
.
BlipFillType
);
this
.
fireEvent
(
'
editcomplete
'
,
this
);
},
this
));
this
.
FillItems
.
push
(
this
.
btnInsertFromFile
);
...
...
apps/presentationeditor/main/app/view/TextArtSettings.js
View file @
e02c4160
...
...
@@ -1104,7 +1104,7 @@ define([
this
.
lockedControls
.
push
(
this
.
btnInsertFromUrl
);
this
.
btnInsertFromFile
.
on
(
'
click
'
,
_
.
bind
(
function
(
btn
){
if
(
this
.
api
)
this
.
api
.
ChangeArtImageFromFile
();
if
(
this
.
api
)
this
.
api
.
ChangeArtImageFromFile
(
this
.
BlipFillType
);
this
.
fireEvent
(
'
editcomplete
'
,
this
);
},
this
));
this
.
btnInsertFromUrl
.
on
(
'
click
'
,
_
.
bind
(
this
.
insertFromUrl
,
this
));
...
...
apps/spreadsheeteditor/main/app/view/ShapeSettings.js
View file @
e02c4160
...
...
@@ -1138,7 +1138,7 @@ define([
this
.
fillControls
.
push
(
this
.
btnInsertFromUrl
);
this
.
btnInsertFromFile
.
on
(
'
click
'
,
_
.
bind
(
function
(
btn
){
if
(
this
.
api
)
this
.
api
.
asc_changeShapeImageFromFile
();
if
(
this
.
api
)
this
.
api
.
asc_changeShapeImageFromFile
(
this
.
BlipFillType
);
Common
.
NotificationCenter
.
trigger
(
'
edit:complete
'
,
this
);
},
this
));
this
.
btnInsertFromUrl
.
on
(
'
click
'
,
_
.
bind
(
this
.
insertFromUrl
,
this
));
...
...
apps/spreadsheeteditor/main/app/view/TextArtSettings.js
View file @
e02c4160
...
...
@@ -1108,7 +1108,7 @@ define([
this
.
lockedControls
.
push
(
this
.
btnInsertFromUrl
);
this
.
btnInsertFromFile
.
on
(
'
click
'
,
_
.
bind
(
function
(
btn
){
if
(
this
.
api
)
this
.
api
.
asc_changeArtImageFromFile
();
if
(
this
.
api
)
this
.
api
.
asc_changeArtImageFromFile
(
this
.
BlipFillType
);
Common
.
NotificationCenter
.
trigger
(
'
edit:complete
'
,
this
);
},
this
));
this
.
btnInsertFromUrl
.
on
(
'
click
'
,
_
.
bind
(
this
.
insertFromUrl
,
this
));
...
...
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