Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "hiding div to allow playing/showing the video" #3212

Merged
merged 7 commits into from
Oct 4, 2018
2 changes: 1 addition & 1 deletion web/client/components/maps/modals/MetadataModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class MetadataModal extends React.Component {
toolbar: [
[{ 'size': ['small', false, 'large', 'huge'] }, 'bold', 'italic', 'underline', 'blockquote'],
[{ 'list': 'bullet' }, { 'align': [] }],
[{ 'color': [] }, { 'background': [] }, 'clean'], ['image', 'link', 'video']
[{ 'color': [] }, { 'background': [] }, 'clean'], ['image', 'link']
]
},
options: {},
Expand Down
1 change: 0 additions & 1 deletion web/client/components/misc/quillmodules/ResizeModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,6 @@ module.exports = Quill => {
iframe.setAttribute('height', height);
let overlay = document.createElement('DIV');
overlay.setAttribute('class', 'ms-quill-iframe');
overlay.style.display = 'none';
overlay.style.overflow = 'hidden';
overlay.style.position = 'absolute';
overlay.style.left = '0';
Expand Down
2 changes: 1 addition & 1 deletion web/client/components/resources/modals/DetailSheet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = ({
toolbar: [
[{ 'size': ['small', false, 'large', 'huge'] }, 'bold', 'italic', 'underline', 'blockquote'],
[{ 'list': 'bullet' }, { 'align': [] }],
[{ 'color': [] }, { 'background': [] }, 'clean'], ['image', 'link', 'video']
[{ 'color': [] }, { 'background': [] }, 'clean'], ['image', 'link']
]
},
detailsText,
Expand Down