diff --git a/public/docs/ts/latest/guide/cheatsheet.jade b/public/docs/ts/latest/guide/cheatsheet.jade index cd22178a1a..e171a2dd2f 100644 --- a/public/docs/ts/latest/guide/cheatsheet.jade +++ b/public/docs/ts/latest/guide/cheatsheet.jade @@ -16,11 +16,11 @@ article(class="l-content-small grid-fluid docs-content") br br - table(ng-repeat='section in cheatsheet' ng-cloak) + table(ng-repeat='section in appCtrl.cheatsheet' ng-cloak) tr th {{section.name}} - th(ng-bind-html="getSafeHtml(section.description)") + th(ng-bind-html="appCtrl.getSafeHtml(section.description)") tr(ng-repeat='child in section.items') td code(bold='child.bold') {{child.syntax}} - td(ng-bind-html="getSafeHtml(child.description)") + td(ng-bind-html="appCtrl.getSafeHtml(child.description)")