Been trying spritesmith today, it works and is brilliant. However, I think I found an issue.
Please ignore the line numbers in the code blocks below :)
I'm getting this (notice that there is no filename in the path):
$arrow-navigation-left: (0px, 56px, 0px, -56px, 46px, 95px, 337px, 496px, '../assets/images', 'arrow_navigation_left', );
I need to add the filename in the path to get it working:
And now I have the final sass file which points to the sprite file:
$arrow-navigation-left: (0px, 56px, 0px, -56px, 46px, 95px, 337px, 496px, '../assets/images/sprites.png', 'arrow_navigation_left', );
I do not know if this is intended, I thought it would be good to mention it.
Been trying spritesmith today, it works and is brilliant. However, I think I found an issue. Please ignore the line numbers in the code blocks below :)
This:
Works and produces this output:
$arrow-navigation-left: (0px, 56px, 0px, -56px, 46px, 95px, 337px, 496px, 'sprites.png', 'arrow_navigation_left', );
Now, setting
imgPath
:I'm getting this (notice that there is no filename in the path):
$arrow-navigation-left: (0px, 56px, 0px, -56px, 46px, 95px, 337px, 496px, '../assets/images', 'arrow_navigation_left', );
I need to add the filename in the path to get it working:
And now I have the final sass file which points to the sprite file:
$arrow-navigation-left: (0px, 56px, 0px, -56px, 46px, 95px, 337px, 496px, '../assets/images/sprites.png', 'arrow_navigation_left', );
I do not know if this is intended, I thought it would be good to mention it.