New apps for text, slide and spreadsheet

This commit is contained in:
yflory
2018-02-19 18:52:57 +01:00
parent 831c23b259
commit 7cb3282634
3200 changed files with 384 additions and 53 deletions

View File

@@ -672,12 +672,24 @@ define([
});
});
break;
case 'save': // OnlyOffice save
button = $('<button>', {
'class': 'fa fa-save',
title: 'TODO OnlyOffice save',
}).append($('<span>', {'class': 'cp-toolbar-drawer-element'})
.text('TODO: OnlyOffice save'))
.click(common.prepareFeedback(type));
if (callback) { button.click(callback); }
break;
default:
button = $('<button>', {
'class': "fa fa-question",
style: 'font:'+size+' FontAwesome'
})
.click(common.prepareFeedback(type));
if (callback) {
button.click(callback);
}
}
if (rightside) {
button.addClass('cp-toolbar-rightside-button');