-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sass: explicitly set $bootstrap-sass-asset-helper
Remove reliance on a hack as a polyfill for `function-exists`. Remove clutter from the generated variables template.
- Loading branch information
Showing
6 changed files
with
15 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
@function twbs-image-path($path) { | ||
@return image-url($path, true); | ||
} | ||
|
||
$bootstrap-sass-asset-helper: true; |
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
@function twbs-image-path($path) { | ||
@return image-path($path); | ||
} | ||
|
||
$bootstrap-sass-asset-helper: true; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
glebm
Author
Member
|
This file contains 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 file contains 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 file contains 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
I've debugged two hours for this issue. I create a new rails project, using bootstrap-sass version 3.3.1, and compile the
application.css
file. In this file, unlike other assets, I found icon font files are not compiled with digest name. checking the source code,$bootstrap-sass-asset-helper
is not set to true by default, then I check git repo, found it is fixed. May I ask when this version will be released? Currently I add this line to myapplication.css.scss
file.