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
fd170092
Commit
fd170092
authored
Apr 13, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PE + PE mobile] Update for underscore 1.8.3.
parent
df965949
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
12 deletions
+12
-12
apps/presentationeditor/main/app/view/DocumentPreview.js
apps/presentationeditor/main/app/view/DocumentPreview.js
+1
-1
apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js
...esentationeditor/main/app/view/HyperlinkSettingsDialog.js
+1
-1
apps/presentationeditor/main/app/view/SlideSizeSettings.js
apps/presentationeditor/main/app/view/SlideSizeSettings.js
+1
-1
apps/presentationeditor/main/app/view/SlideshowSettings.js
apps/presentationeditor/main/app/view/SlideshowSettings.js
+1
-1
apps/presentationeditor/main/app/view/Statusbar.js
apps/presentationeditor/main/app/view/Statusbar.js
+2
-2
apps/presentationeditor/mobile/app/view/add/AddSlide.js
apps/presentationeditor/mobile/app/view/add/AddSlide.js
+1
-1
apps/presentationeditor/mobile/app/view/edit/EditChart.js
apps/presentationeditor/mobile/app/view/edit/EditChart.js
+1
-1
apps/presentationeditor/mobile/app/view/edit/EditSlide.js
apps/presentationeditor/mobile/app/view/edit/EditSlide.js
+3
-3
apps/presentationeditor/mobile/app/view/edit/EditTable.js
apps/presentationeditor/mobile/app/view/edit/EditTable.js
+1
-1
No files found.
apps/presentationeditor/main/app/view/DocumentPreview.js
View file @
fd170092
...
...
@@ -100,7 +100,7 @@ define([
render
:
function
()
{
var
el
=
$
(
this
.
el
),
me
=
this
;
el
.
html
(
_
.
template
(
this
.
template
,
{
el
.
html
(
_
.
template
(
this
.
template
)(
{
scope
:
this
}));
...
...
apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js
View file @
fd170092
...
...
@@ -103,7 +103,7 @@ define([
'
</div>
'
].
join
(
''
);
this
.
options
.
tpl
=
_
.
template
(
this
.
template
,
this
.
options
);
this
.
options
.
tpl
=
_
.
template
(
this
.
template
)(
this
.
options
);
this
.
slides
=
this
.
options
.
slides
;
this
.
api
=
this
.
options
.
api
;
...
...
apps/presentationeditor/main/app/view/SlideSizeSettings.js
View file @
fd170092
...
...
@@ -87,7 +87,7 @@ define([
'
</div>
'
].
join
(
''
);
this
.
options
.
tpl
=
_
.
template
(
this
.
template
,
this
.
options
);
this
.
options
.
tpl
=
_
.
template
(
this
.
template
)(
this
.
options
);
this
.
spinners
=
[];
this
.
_noApply
=
false
;
...
...
apps/presentationeditor/main/app/view/SlideshowSettings.js
View file @
fd170092
...
...
@@ -68,7 +68,7 @@ define([
'
</div>
'
].
join
(
''
);
this
.
options
.
tpl
=
_
.
template
(
this
.
template
,
this
.
options
);
this
.
options
.
tpl
=
_
.
template
(
this
.
template
)(
this
.
options
);
this
.
spinners
=
[];
this
.
_noApply
=
false
;
...
...
apps/presentationeditor/main/app/view/Statusbar.js
View file @
fd170092
...
...
@@ -80,7 +80,7 @@ define([
templateUserList
:
_
.
template
(
'
<ul>
'
+
'
<% _.each(users, function(item) { %>
'
+
'
<%= _.template(usertpl
,
{user: item, scope: scope}) %>
'
+
'
<%= _.template(usertpl
)(
{user: item, scope: scope}) %>
'
+
'
<% }); %>
'
+
'
</ul>
'
),
...
...
@@ -338,7 +338,7 @@ define([
_onAddUser
:
function
(
m
,
c
,
opts
)
{
if
(
this
.
panelUsersList
)
{
this
.
panelUsersList
.
find
(
'
ul
'
).
append
(
_
.
template
(
this
.
tplUser
,
{
user
:
m
,
scope
:
this
}));
this
.
panelUsersList
.
find
(
'
ul
'
).
append
(
_
.
template
(
this
.
tplUser
)(
{
user
:
m
,
scope
:
this
}));
this
.
panelUsersList
.
scroller
.
update
({
minScrollbarLength
:
40
,
alwaysVisibleY
:
true
});
}
},
...
...
apps/presentationeditor/mobile/app/view/add/AddSlide.js
View file @
fd170092
...
...
@@ -123,7 +123,7 @@ define([
'
<% }); %>
'
,
'
</ul>
'
,
'
<% }); %>
'
].
join
(
''
)
,
{
].
join
(
''
)
)(
{
layouts
:
layouts
});
...
...
apps/presentationeditor/mobile/app/view/edit/EditChart.js
View file @
fd170092
...
...
@@ -203,7 +203,7 @@ define([
'
<% }); %>
'
,
'
</ul>
'
,
'
<% }); %>
'
].
join
(
''
)
,
{
].
join
(
''
)
)(
{
styles
:
styles
});
...
...
apps/presentationeditor/mobile/app/view/edit/EditSlide.js
View file @
fd170092
...
...
@@ -235,7 +235,7 @@ define([
'
<% }); %>
'
,
'
</ul>
'
,
'
<% }); %>
'
].
join
(
''
)
,
{
].
join
(
''
)
)(
{
layouts
:
layouts
});
...
...
@@ -268,7 +268,7 @@ define([
'
<% }); %>
'
,
'
</div>
'
,
'
<% }); %>
'
].
join
(
''
)
,
{
].
join
(
''
)
)(
{
themes
:
themes
});
...
...
@@ -291,7 +291,7 @@ define([
'
</label>
'
,
'
</li>
'
,
'
<% }); %>
'
].
join
(
''
)
,
{
].
join
(
''
)
)(
{
android
:
Common
.
SharedSettings
.
get
(
'
android
'
),
types
:
_arrCurrentEffectTypes
});
...
...
apps/presentationeditor/mobile/app/view/edit/EditTable.js
View file @
fd170092
...
...
@@ -138,7 +138,7 @@ define([
'
</div>
'
,
'
<% }); %>
'
,
'
</div>
'
].
join
(
''
)
,
{
].
join
(
''
)
)(
{
styles
:
styles
});
...
...
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