Fix for Quill editor
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
modules: {
|
||||
toolbar: [
|
||||
[{ 'header': [1, 2, false] }],
|
||||
['link', 'image'],
|
||||
['bold', 'italic', 'underline', 'strike'],
|
||||
[{ 'script': 'sub'}, { 'script': 'super' }],
|
||||
[{ 'list': 'ordered'}, { 'list': 'bullet' }, 'blockquote']
|
||||
|
||||
@@ -1205,7 +1205,7 @@ fieldset {
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
.locale-select, .text-editors {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@@ -1253,7 +1253,7 @@ fieldset {
|
||||
position: relative;
|
||||
background-color: $white;
|
||||
|
||||
li {
|
||||
li[data-locale] {
|
||||
display: none;
|
||||
|
||||
&.selected {
|
||||
|
||||
@@ -8,6 +8,10 @@ class ApplicationController < BaseController
|
||||
@@test_host
|
||||
@@test_location
|
||||
|
||||
def default_url_options
|
||||
{ host: "#{request.protocol}#{request.host_with_port}" }
|
||||
end
|
||||
|
||||
def capture_page_info
|
||||
# capture request info in case an error occurs
|
||||
if request.method == "GET" && (params[:controller] != 'application' || params[:action] != 'contact')
|
||||
@@ -225,7 +229,7 @@ class ApplicationController < BaseController
|
||||
|
||||
@conference.organizations.each do |org|
|
||||
org.users.each do |user|
|
||||
email_list << user.named_email
|
||||
# email_list << user.named_email
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user