Skip to content

Commit

Permalink
fix(layout): clone column immediately to fix animation on Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
ppoffice committed Sep 13, 2020
1 parent 26326ef commit 7846071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layout/common/scripts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = class extends Component {
{clipboard && <script src={cdn('clipboard', '2.0.4', 'dist/clipboard.min.js')} async></script>}
<script dangerouslySetInnerHTML={{ __html: `moment.locale("${language}");` }}></script>
<script dangerouslySetInnerHTML={{ __html: embeddedConfig }}></script>
<script src={url_for('/js/column.js')} async></script>
<script src={url_for('/js/column.js')}></script>
<Plugins site={site} config={config} page={page} helper={helper} head={false} />
<script src={url_for('/js/main.js')} defer></script>
</Fragment>;
Expand Down

0 comments on commit 7846071

Please sign in to comment.