diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/scaffolding.html | 8 | ||||
| -rw-r--r-- | docs/templates/pages/scaffolding.mustache | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/docs/scaffolding.html b/docs/scaffolding.html index caffa6af6..e88656dbb 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -529,16 +529,16 @@ </div><!-- /.span --> <div class="span8"> <pre class="prettyprint linenums"> - // Landscape phones and down + /* Landscape phones and down */ @media (max-width: 480px) { ... } - // Landscape phone to portrait tablet + /* Landscape phone to portrait tablet */ @media (max-width: 767px) { ... } - // Portrait tablet to landscape and desktop + /* Portrait tablet to landscape and desktop */ @media (min-width: 768px) and (max-width: 979px) { ... } - // Large desktop + /* Large desktop */ @media (min-width: 1200px) { ... } </pre> </div><!-- /.span --> diff --git a/docs/templates/pages/scaffolding.mustache b/docs/templates/pages/scaffolding.mustache index 13c777a26..2db9e9d3d 100644 --- a/docs/templates/pages/scaffolding.mustache +++ b/docs/templates/pages/scaffolding.mustache @@ -452,16 +452,16 @@ </div><!-- /.span --> <div class="span8"> <pre class="prettyprint linenums"> - // {{_i}}Landscape phones and down{{/i}} + /* {{_i}}Landscape phones and down{{/i}} */ @media (max-width: 480px) { ... } - // {{_i}}Landscape phone to portrait tablet{{/i}} + /* {{_i}}Landscape phone to portrait tablet{{/i}} */ @media (max-width: 767px) { ... } - // {{_i}}Portrait tablet to landscape and desktop{{/i}} + /* {{_i}}Portrait tablet to landscape and desktop{{/i}} */ @media (min-width: 768px) and (max-width: 979px) { ... } - // {{_i}}Large desktop{{/i}} + /* {{_i}}Large desktop{{/i}} */ @media (min-width: 1200px) { ... } </pre> </div><!-- /.span --> |
