Skip to content

Commit ef908ad

Browse files
committed
add missing keywords
1 parent add1df3 commit ef908ad

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

src/main/kotlin/com/emberjs/hbs/Internals.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ object Internals {
4141
"query-params",
4242
"textarea",
4343
"unbound",
44+
"readonly",
4445
"unless",
4546
"yield",
4647
"has-block-params",
@@ -58,4 +59,4 @@ object Internals {
5859
"TextArea" to listOf("@ember/component", "component"),
5960
"LinkTo" to listOf("@ember/routing", "component"),
6061
)
61-
}
62+
}

src/main/resources/com/emberjs/external/ember-helpers.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,22 +1196,6 @@ declare function modifier(args: [modifier: string|Modifier, args: any[]], hash:
11961196
declare function helper(args: [helper: string|Helper, args: any[]], hash: {[x: string]: any}): Helper|undefined;
11971197

11981198

1199-
/**
1200-
`page-title` allows you to set the title of any page in your application and
1201-
append additional titles for each route. For complete documentation, see
1202-
https://github.com/ember-cli/ember-page-title.
1203-
1204-
```handlebars
1205-
{{page-title "My Page Title" }}
1206-
```
1207-
1208-
@method page-title
1209-
@for Ember.Templates.helpers
1210-
@param {String} param
1211-
@public
1212-
*/
1213-
declare function pageTitle(args: [title: string]);
1214-
12151199
/**
12161200
The `{{mount}}` helper lets you embed a routeless engine in a template.
12171201
Mounting an engine will cause an instance to be booted and its `application`
@@ -1433,7 +1417,6 @@ const helpers = {
14331417
mount,
14341418
mut,
14351419
'outlet': outlet,
1436-
'page-title': pageTitle,
14371420
concat,
14381421
get,
14391422
unbound,
@@ -1443,5 +1426,3 @@ const helpers = {
14431426
}
14441427

14451428
export default helpers;
1446-
1447-

0 commit comments

Comments
 (0)