-
@@ -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);