Skip to content

Commit

Permalink
Merge pull request 'fix/bugfix' (#224) from fix/bugfix into release/v…
Browse files Browse the repository at this point in the history
…8.3.0
  • Loading branch information
Julia Radzhabova committed Jan 14, 2025
2 parents 3d28f76 + af39c2c commit e968eb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/pdfeditor/main/app/controller/DocumentHolderExt.js
Original file line number Diff line number Diff line change
Expand Up @@ -2376,6 +2376,7 @@ define([], function () {

dh.removeComment = function(item, e, eOpt){
this.api && this.api.asc_remove();
this.editComplete();
};

dh.equationCallback = function(eqObj) {
Expand Down
2 changes: 1 addition & 1 deletion apps/presentationeditor/main/app/view/DocumentHolderExt.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ define([], function () {
itemTemplate: _.template([
'<div class="layout" id="<%= id %>" style="width: <%= itemWidth %>px;">',
'<div style="background-image: url(<%= imageUrl %>); width: <%= itemWidth %>px; height: <%= itemHeight %>px;background-size: contain;"></div>',
'<div class="title"><%= title %></div> ',
'<div class="title"><%- title %></div> ',
'</div>'
].join(''))
}).on('item:click', function(picker, item, record, e) {
Expand Down
2 changes: 1 addition & 1 deletion apps/presentationeditor/main/app/view/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -2356,7 +2356,7 @@ define([
itemTemplate: _.template([
'<div class="layout" id="<%= id %>" style="width: <%= itemWidth %>px;">',
'<div style="background-image: url(<%= imageUrl %>); width: <%= itemWidth %>px; height: <%= itemHeight %>px;background-size: contain;"></div>',
'<div class="title"><%= title %></div> ',
'<div class="title"><%- title %></div> ',
'</div>'
].join(''))
});
Expand Down

0 comments on commit e968eb0

Please sign in to comment.