comparison src/index.html @ 14:f6ac0c3ad3eb

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 19 May 2023 07:19:46 -0600
parents eee8862be4c7
children c1fc5b67f128
comparison
equal deleted inserted replaced
13:36c7b187827b 14:f6ac0c3ad3eb
21 </head> 21 </head>
22 <body> 22 <body>
23 <h1>Reactionary Drag and Drop</h1> 23 <h1>Reactionary Drag and Drop</h1>
24 <h4><a href="http://www.reactionary.software/">Reactionary Software</a> by <a href="https://www.linkmystyle.com/fschmidt">fschmidt</a></h4> 24 <h4><a href="http://www.reactionary.software/">Reactionary Software</a> by <a href="https://www.linkmystyle.com/fschmidt">fschmidt</a></h4>
25 25
26 <p>I can't find a usable drag-and-drop JavaScript library, so, as usual, I am forced to write one. I need something that works on mobile, supports both drag and dropzones, and is simple to use. And it shouldn't require an abomination like <b>npm</b> to get the files, one should just be able to download the needed files directly. </p> 26 <p>I can't find a usable drag-and-drop JavaScript library, so, as usual, I am forced to write one. I need something that works on mobile, supports both drag and dropzones, and is simple to use. And it shouldn't require an abomination like <b>npm</b> to get the files, one should just be able to download the needed files directly.</p>
27 27
28 <p>I will start by reviewing some of the existing depraved alternatives:</p> 28 <p>I will start by reviewing some of the existing depraved alternatives:</p>
29 <ul> 29 <ul>
30 <li><a href="/alternatives/standard.html">Standard Drag and Drop API</a></li> 30 <li><a href="/alternatives/standard.html">Standard Drag and Drop API</a></li>
31 <li><a href="/alternatives/interactjs.html">interact.js</a></li> 31 <li><a href="/alternatives/interactjs.html">interact.js</a></li>