fixed curly braces

This commit is contained in:
Alex Wolfe 2015-03-02 23:14:05 -08:00
parent 5c6e4ecd0c
commit 4e73e7a148
3 changed files with 9 additions and 5 deletions

View File

@ -31,7 +31,7 @@ p.
pre.prettyprint
code.
> pub get
> pub get
Resolving dependencies... (7.3s)
+ angular2 2.0.0-alpha.6
+ browser 0.10.0+2
@ -128,11 +128,10 @@ p.
A template has access to all the public properties and methods
of its component controller.
The template above binds to a <code>name</code> property through
the double-mustache syntax (<code>{{ }}</code>).
the double-mustache syntax (<code ng-non-bindable>{{ }}</code>).
The body of the constructor assigns "Alice" to the name property. When the
template renders, Alice appears instead of <code>{{ name }}</code>.
template renders, Alice appears instead of <code ng-non-bindable>{{ name }}</code>.
// TODO: fix double mustaches above.
// [PENDING: Do we really want to use the term "component controller"?
// If so, set it up beforehand.

View File

@ -16,7 +16,7 @@ $blueberry: #0262C2;
$ocean: #0143A3;
//PURPLE
$grape: #5E35B1;
$grape: #9575CD;
// RED COLORS
$squid: #EF3872;

View File

@ -29,6 +29,11 @@
margin-bottom: $unit * 3;
border-radius: 4px;
box-shadow: 0px 2px 5px rgba($coal, .3);
padding: ($unit * 2) ($unit * 4);
&.linenums {
padding: 0px;
}
ol {
background: $steel;