fix builder width handler

pull/105/head
Alex Turchyn 2 years ago
parent 788493c0a6
commit 9d90304d9a

@ -327,7 +327,7 @@ export default {
onWindowResize (e) {
const breakpointLg = 1024
this.isBreakpointLg = this.$el.getRootNode().children[0].offsetWidth < breakpointLg
this.isBreakpointLg = this.$el.getRootNode().querySelector('div').offsetWidth < breakpointLg
},
setDocumentRefs (el) {
if (el) {

@ -15,6 +15,11 @@ module Docuseal
else
'https://console.docuseal.co'
end
CDN_URL = if Rails.env.development?
'http://localhost:3000'
else
'https://cdn.docuseal.co'
end
CERTS = JSON.parse(ENV.fetch('CERTS', '{}'))

Loading…
Cancel
Save