mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
Add presentation format pps, ppsx
This commit is contained in:
@ -63,6 +63,7 @@ namespace OnlineEditorsExampleMVC.Models
|
||||
|
||||
public static readonly List<string> ExtsPresentation = new List<string>
|
||||
{
|
||||
".pps", ".ppsx",
|
||||
".ppt", ".pptx",
|
||||
".odp"
|
||||
};
|
||||
|
||||
@ -42,7 +42,7 @@ public class FileUtility
|
||||
|
||||
public static List<String> ExtsPresentation = Arrays.asList
|
||||
(
|
||||
".ppt", ".pptx",".odp"
|
||||
".pps", ".ppsx", ".ppt", ".pptx",".odp"
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -80,7 +80,7 @@ fileUtility.documentExts = [".docx", ".doc", ".odt", ".rtf", ".txt", ".html", ".
|
||||
|
||||
fileUtility.spreadsheetExts = [".xls", ".xlsx", ".ods", ".csv"];
|
||||
|
||||
fileUtility.presentationExts = [".ppt", ".pptx", ".odp"];
|
||||
fileUtility.presentationExts = [".pps", ".ppsx", ".ppt", ".pptx", ".odp"];
|
||||
|
||||
function getUrlParams(url) {
|
||||
try {
|
||||
|
||||
@ -4,7 +4,7 @@ class FileUtility
|
||||
|
||||
@@exts_spreadsheet = %w(.xls .xlsx .ods .csv)
|
||||
|
||||
@@exts_presentation = %w(.ppt .pptx .odp)
|
||||
@@exts_presentation = %w(.pps .ppsx .ppt .pptx .odp)
|
||||
|
||||
class << self
|
||||
|
||||
|
||||
Reference in New Issue
Block a user