This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This mixin is forked from talented Hugo Giraudel | |
* Mixin to put items on a circle | |
* [1] - Allows children to be absolutely positioned | |
* [2] - Allows the mixin to be used on a list | |
* [3] - In case box-sizing: border-box has been enabled | |
* [4] - Allows any type of direct children to be targeted | |
// element indexes should be written to the DOM either via backend or JS | |
$('.circle-container').children().each(function() { |
NewerOlder