Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ONLYOFFICE/onlyoffice-nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorSergey Linnik <sergey.linnik@onlyoffice.com>2017-03-01 11:53:06 +0300
committerSergey Linnik <sergey.linnik@onlyoffice.com>2017-03-01 17:20:34 +0300
commit82a41ab40f07273cc07b54362f6123df06963e9b (patch)
treec3e36a888a0eb8c59f353484d00ea516ddea7220 /js
parent9b068ed28ed4c6e1253efea8a81dcb4d31f26d88 (diff)
Change icon class for add menu
Diffstat (limited to 'js')
-rw-r--r--js/main.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/main.js b/js/main.js
index a53ef16..7f506e9 100644
--- a/js/main.js
+++ b/js/main.js
@@ -164,7 +164,7 @@
menu.addMenuEntry({
id: "onlyofficeDocx",
displayName: t(OCA.Onlyoffice.AppName, "Document"),
- iconClass: "onlyoffice-new-docx",
+ iconClass: "icon-onlyoffice-new-docx",
fileType: "docx",
actionHandler: function (name) {
OCA.Onlyoffice.CreateFile(name + ".docx", fileList);
@@ -174,7 +174,7 @@
menu.addMenuEntry({
id: "onlyofficeXlsx",
displayName: t(OCA.Onlyoffice.AppName, "Spreadsheet"),
- iconClass: "onlyoffice-new-xlsx",
+ iconClass: "icon-onlyoffice-new-xlsx",
fileType: "xlsx",
actionHandler: function (name) {
OCA.Onlyoffice.CreateFile(name + ".xlsx", fileList);
@@ -184,7 +184,7 @@
menu.addMenuEntry({
id: "onlyofficePpts",
displayName: t(OCA.Onlyoffice.AppName, "Presentation"),
- iconClass: "onlyoffice-new-pptx",
+ iconClass: "icon-onlyoffice-new-pptx",
fileType: "pptx",
actionHandler: function (name) {
OCA.Onlyoffice.CreateFile(name + ".pptx", fileList);