Skip to content

Commit

Permalink
a couple more jquery references
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrins committed Sep 18, 2020
1 parent 7f904b7 commit e272a39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<title>TinyColor - Fast, small color manipulation in JavaScript</title>

<link rel="stylesheet" href="demo/demo.css" type="text/css" media="screen" />
<script type='text/javascript' src='demo/jquery-1.9.1.js'></script>
<script type='text/javascript' src='tinycolor.js'></script>
<script type='text/javascript'>

Expand Down Expand Up @@ -58,7 +57,7 @@
combines.classList.toggle("invisible", !tiny.isValid());

function colorArrayToHTML(arr) {
return $.map(arr, function (e) {
return arr.map(function (e) {
return '<span style="background:' + e.toHexString() + '"></span>'
}).join('');
}
Expand Down

0 comments on commit e272a39

Please sign in to comment.