Skip to content

Commit

Permalink
MDL-57338 templates: fix missing example variables
Browse files Browse the repository at this point in the history
From Davids review, thanks
  • Loading branch information
danpoltawski committed Dec 29, 2016
1 parent b0773d7 commit f18c2a9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/templates/action_menu_link.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
{
"text": "Example link text",
"showtext": true,
"url": "http://example.com/link"
"url": "http://example.com/link",
"classes": "menu-action",
"instance": "1"
}
}}
{{^disabled}}
Expand Down
3 changes: 2 additions & 1 deletion lib/templates/login.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
"rememberusername": true,
"passwordautocomplete": false,
"signupurl": "http://localhost/stable_master/login/signup.php",
"cookieshelpiconformatted": ""
"cookieshelpiconformatted": "",
"username": ""
}
}}
{{#hasinstructions}}
Expand Down
4 changes: 3 additions & 1 deletion theme/boost/templates/core/dataformat_selector.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@
{
"base": "http://example.org/",
"name": "test",
"value": "test",
"label": "Download table data as",
"params": false,
"options": [{"label": "CSV", "name": "csv"}, {"label": "Excel", "name": "excel"}],
"submit": "Download"
"submit": "Download",
"sesskey": ""
}
}}
<form method="get" action="{{base}}" class="dataformatselector m-a-1">
Expand Down

0 comments on commit f18c2a9

Please sign in to comment.