Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
c3443c63
Commit
c3443c63
authored
Apr 17, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PE][SSE][DE mobiled+embedded] Remove jszip, jszip-utils.
parent
c67c1581
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
5 additions
and
50 deletions
+5
-50
apps/documenteditor/embed/index.html
apps/documenteditor/embed/index.html
+0
-2
apps/documenteditor/embed/index.html.deploy
apps/documenteditor/embed/index.html.deploy
+0
-2
apps/documenteditor/mobile/app-dev.js
apps/documenteditor/mobile/app-dev.js
+0
-4
apps/documenteditor/mobile/app.js
apps/documenteditor/mobile/app.js
+1
-5
apps/presentationeditor/embed/index.html
apps/presentationeditor/embed/index.html
+0
-2
apps/presentationeditor/embed/index.html.deploy
apps/presentationeditor/embed/index.html.deploy
+0
-2
apps/presentationeditor/main/app.js
apps/presentationeditor/main/app.js
+1
-3
apps/presentationeditor/main/app_dev.js
apps/presentationeditor/main/app_dev.js
+0
-2
apps/presentationeditor/mobile/app-dev.js
apps/presentationeditor/mobile/app-dev.js
+0
-4
apps/presentationeditor/mobile/app.js
apps/presentationeditor/mobile/app.js
+1
-5
apps/spreadsheeteditor/embed/index.html
apps/spreadsheeteditor/embed/index.html
+0
-2
apps/spreadsheeteditor/embed/index.html.deploy
apps/spreadsheeteditor/embed/index.html.deploy
+0
-3
apps/spreadsheeteditor/main/app.js
apps/spreadsheeteditor/main/app.js
+1
-3
apps/spreadsheeteditor/main/app_dev.js
apps/spreadsheeteditor/main/app_dev.js
+0
-2
apps/spreadsheeteditor/mobile/app-dev.js
apps/spreadsheeteditor/mobile/app-dev.js
+0
-4
apps/spreadsheeteditor/mobile/app.js
apps/spreadsheeteditor/mobile/app.js
+1
-5
No files found.
apps/documenteditor/embed/index.html
View file @
c3443c63
...
...
@@ -321,8 +321,6 @@
<script
type=
"text/javascript"
src=
"../../../vendor/sockjs/sockjs.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/xregexp/xregexp-all-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip/jszip.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip-utils/jszip-utils.min.js"
></script>
<script
type=
"text/javascript"
src=
"../sdk_dev_scripts.js"
></script>
<script>
...
...
apps/documenteditor/embed/index.html.deploy
View file @
c3443c63
...
...
@@ -312,8 +312,6 @@
<script
type=
"text/javascript"
src=
"../../../vendor/bootstrap/dist/js/bootstrap.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/sockjs/sockjs.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/xregexp/xregexp-all-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip/jszip.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip-utils/jszip-utils.min.js"
></script>
<!--sdk-->
<script
type=
"text/javascript"
src=
"../../../../sdkjs/common/AllFonts.js"
></script>
...
...
apps/documenteditor/mobile/app-dev.js
View file @
c3443c63
...
...
@@ -51,8 +51,6 @@ require.config({
text
:
'
../vendor/requirejs-text/text
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jszip
:
'
../vendor/jszip/jszip.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
api
:
'
api/documents/api
'
,
core
:
'
common/main/lib/core/application
'
,
extendes
:
'
common/mobile/utils/extendes
'
,
...
...
@@ -117,8 +115,6 @@ require([
'
analytics
'
,
'
gateway
'
,
'
locale
'
,
'
jszip
'
,
'
jsziputils
'
,
'
sockjs
'
],
function
(
Backbone
,
Framework7
,
Core
)
{
Backbone
.
history
.
start
();
...
...
apps/documenteditor/mobile/app.js
View file @
c3443c63
...
...
@@ -51,8 +51,6 @@ require.config({
text
:
'
../vendor/requirejs-text/text
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jszip
:
'
../vendor/jszip/jszip.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
allfonts
:
'
../../sdkjs/common/AllFonts
'
,
sdk
:
'
../../sdkjs/word/sdk-all-min
'
,
api
:
'
api/documents/api
'
,
...
...
@@ -102,9 +100,7 @@ require.config({
'
underscore
'
,
'
allfonts
'
,
'
xregexp
'
,
'
sockjs
'
,
'
jszip
'
,
'
jsziputils
'
'
sockjs
'
]
},
gateway
:
{
...
...
apps/presentationeditor/embed/index.html
View file @
c3443c63
...
...
@@ -323,8 +323,6 @@
<script
type=
"text/javascript"
src=
"../../../vendor/bootstrap/dist/js/bootstrap.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/sockjs/sockjs.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/xregexp/xregexp-all-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip/jszip.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip-utils/jszip-utils.min.js"
></script>
<script
type=
"text/javascript"
src=
"../sdk_dev_scripts.js"
></script>
<script>
...
...
apps/presentationeditor/embed/index.html.deploy
View file @
c3443c63
...
...
@@ -316,8 +316,6 @@
<script
type=
"text/javascript"
src=
"../../../vendor/bootstrap/dist/js/bootstrap.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/sockjs/sockjs.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/xregexp/xregexp-all-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip/jszip.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip-utils/jszip-utils.min.js"
></script>
<!--sdk-->
<script
type=
"text/javascript"
src=
"../../../../sdkjs/common/AllFonts.js"
></script>
...
...
apps/presentationeditor/main/app.js
View file @
c3443c63
...
...
@@ -54,7 +54,6 @@ require.config({
jmousewheel
:
'
../vendor/perfect-scrollbar/src/jquery.mousewheel
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
allfonts
:
'
../../sdkjs/common/AllFonts
'
,
sdk
:
'
../../sdkjs/slide/sdk-all-min
'
,
api
:
'
api/documents/api
'
,
...
...
@@ -107,8 +106,7 @@ require.config({
'
underscore
'
,
'
allfonts
'
,
'
xregexp
'
,
'
sockjs
'
,
'
jsziputils
'
'
sockjs
'
]
},
gateway
:
{
...
...
apps/presentationeditor/main/app_dev.js
View file @
c3443c63
...
...
@@ -54,7 +54,6 @@ require.config({
jmousewheel
:
'
../vendor/perfect-scrollbar/src/jquery.mousewheel
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
api
:
'
api/documents/api
'
,
core
:
'
common/main/lib/core/application
'
,
notification
:
'
common/main/lib/core/NotificationCenter
'
,
...
...
@@ -120,7 +119,6 @@ require([
'
analytics
'
,
'
gateway
'
,
'
locale
'
,
'
jsziputils
'
,
'
sockjs
'
,
'
xregexp
'
,
'
underscore
'
...
...
apps/presentationeditor/mobile/app-dev.js
View file @
c3443c63
...
...
@@ -52,8 +52,6 @@ require.config({
text
:
'
../vendor/requirejs-text/text
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jszip
:
'
../vendor/jszip/jszip.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
api
:
'
api/documents/api
'
,
core
:
'
common/main/lib/core/application
'
,
extendes
:
'
common/mobile/utils/extendes
'
,
...
...
@@ -118,8 +116,6 @@ require([
'
analytics
'
,
'
gateway
'
,
'
locale
'
,
'
jszip
'
,
'
jsziputils
'
,
'
sockjs
'
],
function
(
Backbone
,
Framework7
,
Core
)
{
Backbone
.
history
.
start
();
...
...
apps/presentationeditor/mobile/app.js
View file @
c3443c63
...
...
@@ -52,8 +52,6 @@ require.config({
text
:
'
../vendor/requirejs-text/text
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jszip
:
'
../vendor/jszip/jszip.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
allfonts
:
'
../../sdkjs/common/AllFonts
'
,
sdk
:
'
../../sdkjs/slide/sdk-all-min
'
,
api
:
'
api/documents/api
'
,
...
...
@@ -103,9 +101,7 @@ require.config({
'
underscore
'
,
'
allfonts
'
,
'
xregexp
'
,
'
sockjs
'
,
'
jszip
'
,
'
jsziputils
'
'
sockjs
'
]
},
gateway
:
{
...
...
apps/spreadsheeteditor/embed/index.html
View file @
c3443c63
...
...
@@ -322,8 +322,6 @@
<script
type=
"text/javascript"
src=
"../../../vendor/sockjs/sockjs.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/underscore/underscore-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/xregexp/xregexp-all-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip/jszip.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip-utils/jszip-utils.min.js"
></script>
<script
type=
"text/javascript"
src=
"../sdk_dev_scripts.js"
></script>
<script>
...
...
apps/spreadsheeteditor/embed/index.html.deploy
View file @
c3443c63
...
...
@@ -314,9 +314,6 @@
<script
type=
"text/javascript"
src=
"../../../vendor/sockjs/sockjs.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/underscore/underscore-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/xregexp/xregexp-all-min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip/jszip.min.js"
></script>
<script
type=
"text/javascript"
src=
"../../../vendor/jszip-utils/jszip-utils.min.js"
></script>
<!--sdk-->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../../../../sdkjs/cell/css/main.css"
/>
...
...
apps/spreadsheeteditor/main/app.js
View file @
c3443c63
...
...
@@ -54,7 +54,6 @@ require.config({
jmousewheel
:
'
../vendor/perfect-scrollbar/src/jquery.mousewheel
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
allfonts
:
'
../../sdkjs/common/AllFonts
'
,
sdk
:
'
../../sdkjs/cell/sdk-all-min
'
,
api
:
'
api/documents/api
'
,
...
...
@@ -107,8 +106,7 @@ require.config({
'
underscore
'
,
'
allfonts
'
,
'
xregexp
'
,
'
sockjs
'
,
'
jsziputils
'
'
sockjs
'
]
},
gateway
:
{
...
...
apps/spreadsheeteditor/main/app_dev.js
View file @
c3443c63
...
...
@@ -54,7 +54,6 @@ require.config({
jmousewheel
:
'
../vendor/perfect-scrollbar/src/jquery.mousewheel
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
api
:
'
api/documents/api
'
,
core
:
'
common/main/lib/core/application
'
,
notification
:
'
common/main/lib/core/NotificationCenter
'
,
...
...
@@ -120,7 +119,6 @@ require([
'
analytics
'
,
'
gateway
'
,
'
locale
'
,
'
jsziputils
'
,
'
sockjs
'
,
'
underscore
'
],
function
(
Backbone
,
Bootstrap
,
Core
)
{
...
...
apps/spreadsheeteditor/mobile/app-dev.js
View file @
c3443c63
...
...
@@ -51,8 +51,6 @@ require.config({
text
:
'
../vendor/requirejs-text/text
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jszip
:
'
../vendor/jszip/jszip.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
api
:
'
api/documents/api
'
,
core
:
'
common/main/lib/core/application
'
,
extendes
:
'
common/mobile/utils/extendes
'
,
...
...
@@ -99,8 +97,6 @@ require([
'
analytics
'
,
'
gateway
'
,
'
locale
'
,
'
jszip
'
,
'
jsziputils
'
,
'
sockjs
'
],
function
(
Backbone
,
Framework7
)
{
Backbone
.
history
.
start
();
...
...
apps/spreadsheeteditor/mobile/app.js
View file @
c3443c63
...
...
@@ -51,8 +51,6 @@ require.config({
text
:
'
../vendor/requirejs-text/text
'
,
xregexp
:
'
../vendor/xregexp/xregexp-all-min
'
,
sockjs
:
'
../vendor/sockjs/sockjs.min
'
,
jszip
:
'
../vendor/jszip/jszip.min
'
,
jsziputils
:
'
../vendor/jszip-utils/jszip-utils.min
'
,
allfonts
:
'
../../sdkjs/common/AllFonts
'
,
sdk
:
'
../../sdkjs/cell/sdk-all-min
'
,
api
:
'
api/documents/api
'
,
...
...
@@ -79,9 +77,7 @@ require.config({
'
underscore
'
,
'
allfonts
'
,
'
xregexp
'
,
'
sockjs
'
,
'
jszip
'
,
'
jsziputils
'
'
sockjs
'
]
},
backbone
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment