diff --git a/src/index.html b/src/index.html index ea66639..e7ea8e4 100644 --- a/src/index.html +++ b/src/index.html @@ -35,6 +35,9 @@ .flex-grow { flex-grow: 1; } + .flex-v-center { + align-items: center; + } .fr { float: right; } @@ -212,6 +215,10 @@ border: 0; border-bottom: 1px solid rgba(255,255,255,0.14); } + .main-header__btn-wrap > a { + margin-left: 15px; + + } .logo { display: inline-block; height: 25px; @@ -299,6 +306,8 @@ opacity: 0; padding: 2em; font-size: 1.3em; + max-height: 82vh; + overflow-y: auto; transition: all 0.19s; transform: translateY(-50px) scale(0.7); } @@ -540,21 +549,25 @@
- @@ -742,9 +755,10 @@
2.0.0
    -
  • Save and Load - Long pending and super-useful, now you can save your work and resume it anytime later.
  • +
  • Save and Load - Long pending and super-useful, now you can save your creations and resume it anytime later.
  • Insert JS & CSS - Load popular JavaScript & CSS libraries in your work without writing any code.
  • -
  • Collapsed Panes - Collapse/uncollapse code panes with a single click. Your pane configuration is even saved with every work!
  • +
  • Collapsed Panes - Collapse/uncollapse code panes with a single click. Your pane configuration is even saved with every creation!
  • +
  • Quick color & number change - Click on any color or number and experiment with quick values using a slider.
  • Linting - See your code errors right where you are coding.
  • No more browser hang due to infinite loops!
  • Read more about this big release
  • diff --git a/src/script.js b/src/script.js index 8934332..5cb93fa 100644 --- a/src/script.js +++ b/src/script.js @@ -803,7 +803,7 @@ addLibrarySelect.children[2].innerHTML = libOptions; addLibrarySelect.addEventListener('change', function onSelectChange(e) { var target = e.target; - $('#js-external-' + target.selectedOptions[0].dataset.type).value += target.value + '\n'; + $('#js-external-' + target.selectedOptions[0].dataset.type).value += '\n' + target.value; onExternalLibChange(); }); externalJsTextarea.addEventListener('change', onExternalLibChange);