aboutsummaryrefslogtreecommitdiff
path: root/list.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-03-09 22:04:18 +0100
committercodecalm <codecalm@gmail.com>2020-03-09 22:04:18 +0100
commit13dc327e8e61ac61bf2fbc75cbefd316412cb9e5 (patch)
tree01a5a727481e76bdd5ec3bb8deb4d9e4d0fcb672 /list.html
parentcrop, copyright, rotate (diff)
downloadtabler-icons-13dc327e8e61ac61bf2fbc75cbefd316412cb9e5.tar.xz
folder clean
Diffstat (limited to 'list.html')
-rw-r--r--list.html81
1 files changed, 0 insertions, 81 deletions
diff --git a/list.html b/list.html
deleted file mode 100644
index 534dd84d..00000000
--- a/list.html
+++ /dev/null
@@ -1,81 +0,0 @@
----
----
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
-
- <link rel="stylesheet" href="{{ site.baseurl }}/style.css">
- <title>Tabler Icons</title>
-
- <style>
- body {
- display: none;
- }
- </style>
-</head>
-<body>
-<div class="container">
- <div class="box">
-
- <div class="mb">
- <div class="icons-list">
- {% for icon in site.icons %}
- {% assign name = icon.slug %}
- <div class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
- {% include icon.html name=name %}
- </div>
- {% endfor %}
- </div>
- </div>
-
- <div class="mb">
- <div class="icons-list">
- {% for icon in site.icons %}
- {% assign name = icon.slug %}
- <div class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
- {% include icon.html name=name stroke=1.25 %}
- </div>
- {% endfor %}
- </div>
- </div>
- </div>
-</div>
-
-<script src="{{ site.baseurl }}/jquery-3.4.1.slim.min.js"></script>
-<script>
-
- $(document).ready(function () {
- $('body')
- .on('click', '.js-icon', function (e) {
- var icon = $(this).attr('data-icon');
-
- $('.js-icon-name').html(icon);
- localStorage.setItem('icon', icon);
-
- $('.js-icon-manager svg').replaceWith($(this).find('>svg:eq(0)').clone());
-
- e.preventDefault();
- return false;
- })
- .on('input', '.js-input-range', function(e){
- $('.js-icon svg').css('stroke-width', $(this).val());
-
- e.preventDefault();
- return false;
- });
-
-
- var icon = localStorage.getItem('icon');
- if (icon) {
- $('.js-icon[data-icon="' + icon + '"]').eq(0).click();
- }
-
- document.body.style.display = "block"
- });
-</script>
-</body>
-</html>