Skip to content

Commit

Permalink
adding misssing attribute for stylesheets
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanLovely committed May 5, 2015
1 parent 2472e79 commit 6f8d49f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grunt-tasks/pattern-lab/pattern-lab.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ module.exports = function (grunt, config) {
options: {
transform: function (filePath) {
filePath = "../../../../" + filePath;
return '<link href="' + filePath + '" media="all" />';
return '<link rel="stylesheet" href="' + filePath + '" media="all" />';
}
},
src: assets.css,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!-- endbower -->

<!-- injector:css -->
<link href="../../../../css/style.css" media="all" />
<link rel="stylesheet" href="../../../../css/style.css" media="all" />
<!-- endinjector -->

<!-- bower:js -->
Expand Down

0 comments on commit 6f8d49f

Please sign in to comment.