Browse Source

Merge remote-tracking branch 'origin/develop' into develop

pull/947/head
idooo 7 years ago
parent
commit
fc6c82820e
  1. 12
      _includes/codepen.html
  2. 1
      _includes/codepens/comments-2/index.html

12
_includes/codepen.html

@ -123,7 +123,9 @@ When the example.js file is present, the link to the external codepen site is di
<script>
(function() {
var isIE = !!window.MSInputMethodContext && !!document.documentMode;
isIE && (document.getElementsByClassName("ie11_optional")[0].style.display = 'none');
if (isIE && document.getElementsByClassName("ie11_optional")[0] !== undefined) {
document.getElementsByClassName("ie11_optional")[0].style.display = 'none';
}
})();
(function() {
@ -169,9 +171,11 @@ When the example.js file is present, the link to the external codepen site is di
};
});
document.getElementById("codepen_tab_codepen_" + id).onclick = function() {
document.getElementById("codepen_form_" + id).submit();
};
if (document.getElementById("codepen_tab_codepen_" + id) !== null) {
document.getElementById("codepen_tab_codepen_" + id).onclick = function() {
document.getElementById("codepen_form_" + id).submit();
};
}
})();

1
_includes/codepens/comments-2/index.html

@ -30,3 +30,4 @@
<p>Thanks for supporting TinyMCE! We hope it helps your users create great content.</p>
</textarea>
</div>
Loading…
Cancel
Save