fixed curly braces
This commit is contained in:
parent
5c6e4ecd0c
commit
4e73e7a148
|
@ -31,7 +31,7 @@ p.
|
||||||
|
|
||||||
pre.prettyprint
|
pre.prettyprint
|
||||||
code.
|
code.
|
||||||
> pub get
|
> pub get
|
||||||
Resolving dependencies... (7.3s)
|
Resolving dependencies... (7.3s)
|
||||||
+ angular2 2.0.0-alpha.6
|
+ angular2 2.0.0-alpha.6
|
||||||
+ browser 0.10.0+2
|
+ browser 0.10.0+2
|
||||||
|
@ -128,11 +128,10 @@ p.
|
||||||
A template has access to all the public properties and methods
|
A template has access to all the public properties and methods
|
||||||
of its component controller.
|
of its component controller.
|
||||||
The template above binds to a <code>name</code> property through
|
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
|
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"?
|
// [PENDING: Do we really want to use the term "component controller"?
|
||||||
// If so, set it up beforehand.
|
// If so, set it up beforehand.
|
||||||
|
|
|
@ -16,7 +16,7 @@ $blueberry: #0262C2;
|
||||||
$ocean: #0143A3;
|
$ocean: #0143A3;
|
||||||
|
|
||||||
//PURPLE
|
//PURPLE
|
||||||
$grape: #5E35B1;
|
$grape: #9575CD;
|
||||||
|
|
||||||
// RED COLORS
|
// RED COLORS
|
||||||
$squid: #EF3872;
|
$squid: #EF3872;
|
||||||
|
|
|
@ -29,6 +29,11 @@
|
||||||
margin-bottom: $unit * 3;
|
margin-bottom: $unit * 3;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: 0px 2px 5px rgba($coal, .3);
|
box-shadow: 0px 2px 5px rgba($coal, .3);
|
||||||
|
padding: ($unit * 2) ($unit * 4);
|
||||||
|
|
||||||
|
&.linenums {
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
ol {
|
ol {
|
||||||
background: $steel;
|
background: $steel;
|
||||||
|
|
Loading…
Reference in New Issue