diff options
| author | codecalm <codecalm@gmail.com> | 2020-02-28 12:14:03 +0100 | 
|---|---|---|
| committer | codecalm <codecalm@gmail.com> | 2020-02-28 12:14:03 +0100 | 
| commit | 3db680efcfa87ec56b039ec1802d309d334904bd (patch) | |
| tree | d7c5a1ac0aec51b4e445216a5b174322d0e31ae3 | |
| parent | css fix (diff) | |
| download | tabler-icons-3db680efcfa87ec56b039ec1802d309d334904bd.tar.xz | |
icon manager js
| -rw-r--r-- | index.html | 13 | 
1 files changed, 8 insertions, 5 deletions
| @@ -20,7 +20,7 @@  		{% include icon.html name=last-icon.slug %}  		{% endcapture %} -		<div class="row mb"> +		<div class="row mb js-icon-manager">  			<div class="col">  				<div class="icon-preview-wrap"> @@ -74,7 +74,7 @@  		<div>  			<div class="icons-list">  				{% for icon in site.icons %} -				<a href="#" class="icons-list-icon" title="{{ icon.slug }}"> +				<a href="#" class="icons-list-icon js-icon" title="{{ icon.slug }}">  					{% assign name = icon.slug %}  					{% include icon.html name=name %}  				</a> @@ -84,10 +84,13 @@  	</div>  </div> +<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>  <script> -	(function(){ - -	})(); +	$(document).ready(function(){ +		$('body').on('click', '.js-icon', function(){ +			$('.js-icon-manager svg').replaceWith($(this).find('>svg:eq(0)').clone()); +		}); +	});  </script>  </body>  </html> | 
