mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
nodejs: support diagram editor
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
- nodejs: support vsdx in visio editor
|
- nodejs: support vsdx in diagram editor
|
||||||
- nodejs: support pages, numbers, key formats
|
- nodejs: support pages, numbers, key formats
|
||||||
- on uploading xml convert to supported type only
|
- on uploading xml convert to supported type only
|
||||||
- converting function on index page
|
- converting function on index page
|
||||||
|
|||||||
@ -78,7 +78,7 @@ fileUtility.fileType = {
|
|||||||
cell: 'cell',
|
cell: 'cell',
|
||||||
slide: 'slide',
|
slide: 'slide',
|
||||||
pdf: 'pdf',
|
pdf: 'pdf',
|
||||||
visio: 'visio',
|
diagram: 'diagram',
|
||||||
};
|
};
|
||||||
|
|
||||||
fileUtility.getFormatActions = function getExtensionActions(ext) {
|
fileUtility.getFormatActions = function getExtensionActions(ext) {
|
||||||
|
|||||||
@ -165,8 +165,8 @@ const getEditNewText = function getEditNewText(ext) {
|
|||||||
return 'Presentation';
|
return 'Presentation';
|
||||||
case 'pdf':
|
case 'pdf':
|
||||||
return 'PDF form';
|
return 'PDF form';
|
||||||
case 'visio':
|
case 'diagram':
|
||||||
return 'Visio';
|
return 'Diagram';
|
||||||
default:
|
default:
|
||||||
return ext.toUpperCase();
|
return ext.toUpperCase();
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 169 KiB After Width: | Height: | Size: 169 KiB |
@ -647,8 +647,8 @@ footer table tr td:first-child {
|
|||||||
background-image: url("../images/icon_pdf.svg");
|
background-image: url("../images/icon_pdf.svg");
|
||||||
}
|
}
|
||||||
|
|
||||||
.stored-edit.visio,
|
.stored-edit.diagram,
|
||||||
.uploadFileName.visio {
|
.uploadFileName.diagram {
|
||||||
background-image: url("../images/icon_vsdx.svg");
|
background-image: url("../images/icon_vsdx.svg");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user