docs(cheatsheet): updates for the cheatsheet, move to angular min
This commit is contained in:
parent
d40982dc68
commit
ff53defb4f
|
@ -6,9 +6,9 @@ script(src="/resources/js/vendor/lodash.js")
|
|||
|
||||
|
||||
<!-- Angular Material Dependencies -->
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js")
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.js")
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.js")
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js")
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.min.js")
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.min.js")
|
||||
script(src="https://ajax.googleapis.com/ajax/libs/angular_material/0.8.3/angular-material.min.js")
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
doctype html public "9 of spades"
|
||||
doctype html public
|
||||
html(lang="en" ng-app="angularIOApp" itemscope itemtype="http://schema.org/Framework")
|
||||
head
|
||||
!= partial("/_includes/_head-include")
|
||||
|
|
|
@ -16,7 +16,7 @@ article(class="l-content-small grid-fluid docs-content")
|
|||
br
|
||||
br
|
||||
|
||||
table(ng-repeat='section in cheatsheet')
|
||||
table(ng-repeat='section in cheatsheet' ng-cloak)
|
||||
tr
|
||||
th {{section.syntax}}
|
||||
th
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* Angular Core Styles (subset)
|
||||
*
|
||||
* These styles are usually imported when angular.js script loads, but on angular.io that happens
|
||||
* too late because of the Jade pre-rendering.
|
||||
*/
|
||||
|
||||
[ng-cloak] {
|
||||
display: none !important;
|
||||
}
|
|
@ -9,6 +9,7 @@
|
|||
@import 'theme';
|
||||
@import 'base/reset';
|
||||
@import 'base/type';
|
||||
@import 'angular';
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue