diff src/example.html @ 2:c7c738ddbbf8

remove minified
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 04 Aug 2022 17:43:17 -0600
parents 4c4fc447baea
children b7725dab7482
line wrap: on
line diff
--- a/src/example.html	Thu Aug 04 15:32:15 2022 -0600
+++ b/src/example.html	Thu Aug 04 17:43:17 2022 -0600
@@ -5,11 +5,11 @@
 
 		<title>SCEditor Demo</title>
 
-		<link rel="stylesheet" href="minified/themes/default.min.css" id="theme-style" />
+		<link rel="stylesheet" href="development/themes/default.css" id="theme-style" />
 		  
-		<script src="minified/sceditor.min.js"></script>
-		<script src="minified/icons/monocons.js"></script>
-		<script src="minified/formats/bbcode.js"></script>
+		<script src="development/sceditor.js"></script>
+		<script src="development/icons/monocons.js"></script>
+		<script src="development/formats/bbcode.js"></script>
 
 		<style>
 			html {
@@ -74,13 +74,13 @@
 			sceditor.create(textarea, {
 				format: 'bbcode',
 				icons: 'monocons',
-				style: 'minified/themes/content/default.min.css'
+				style: 'development/themes/content/default.css'
 			});
 
 
 			var themeInput = document.getElementById('theme');
 			themeInput.onchange = function() {
-				var theme = 'minified/themes/' + themeInput.value + '.min.css';
+				var theme = 'development/themes/' + themeInput.value + '.css';
 
 				document.getElementById('theme-style').href = theme;
 			};