Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update guides link #16734

Merged
merged 1 commit into from
Jun 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
- [#16436](https://github.com/emberjs/ember.js/pull/16436) [BUGFIX] Refactor `CoreObject` to leverage native JS semantics.
- [#16382](https://github.com/emberjs/ember.js/pull/16382) Upgrade `backburner.js` to 2.2.2.
- [#16387](https://github.com/emberjs/ember.js/pull/16387) [BUGFIX] Add an assertion that actions cannot be sent from a destroyed/destroying object
- [#16386](https://github.com/emberjs/ember.js/pull/16386) [BUGFIX] Add an assertion if you attempt a `transitionTo` when the app is destroyed
- [#16386](https://github.com/emberjs/ember.js/pull/16386) [BUGFIX] Add an assertion if you attempt a `transitionTo` when the app is destroyed
- [#16433](https://github.com/emberjs/ember.js/pull/16433) [CLEANUP] Remove `content` alias
- [#16462](https://github.com/emberjs/ember.js/pull/16462) [CLEANUP] Remove deprecated `MODEL_FACTORY_INJECTIONS`
- [emberjs/rfcs#286](https://github.com/emberjs/rfcs/blob/master/text/0286-block-let-template-helper.md) [FEATURE] Enabled block `let` handlebars helper by default.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ to know that you have a clean slate: `yarn install && yarn test`.
3. Add a test for your change. Only refactoring and documentation changes
require no new tests. If you are adding functionality or fixing a bug, we need
a test! If your change is a new feature, please
[wrap it in a feature flag](https://emberjs.com/guides/contributing/adding-new-features/).
[wrap it in a feature flag](https://guides.emberjs.com/release/contributing/adding-new-features/).

4. Make sure to check out the
[JavaScript Style Guide](https://github.com/emberjs/ember.js/blob/master/STYLEGUIDE.md) and
Expand Down
2 changes: 1 addition & 1 deletion FEATURES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## About Features

Please read the [Feature Flag Guide](https://emberjs.com/guides/configuring-ember/feature-flags/)
Please read the [Feature Flag Guide](https://guides.emberjs.com/release/configuring-ember/feature-flags/)
for a detailed explanation.

## Feature Flags
Expand Down
2 changes: 1 addition & 1 deletion packages/@ember/application/lib/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ let librariesRegistered = false;

To learn more about the events Ember components use, see

[components/handling-events](https://guides.emberjs.com/current/components/handling-events/#toc_event-names).
[components/handling-events](https://guides.emberjs.com/release/components/handling-events/#toc_event-names).

### Initializers

Expand Down
2 changes: 1 addition & 1 deletion packages/ember-glimmer/lib/syntax/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function buildSyntax(
The `{{input}}` helper lets you create an HTML `<input />` component.
It causes an `TextField` component to be rendered. For more info,
see the [TextField](/api/ember/release/classes/TextField) docs and
the [templates guide](https://emberjs.com/guides/templates/input-helpers/).
the [templates guide](https://guides.emberjs.com/release/templates/input-helpers/).

```handlebars
{{input value="987"}}
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-glimmer/lib/syntax/outlet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { OutletReference, OutletState } from '../utils/outlet';
{{my-footer}}
```

See [templates guide](https://emberjs.com/guides/templates/the-application-template/) for
See [templates guide](https://guides.emberjs.com/release/templates/the-application-template/) for
additional information on using `{{outlet}}` in `application.hbs`.
You may also specify a name for the `{{outlet}}`, which is useful when using more than one
`{{outlet}}` in a template:
Expand All @@ -55,7 +55,7 @@ import { OutletReference, OutletState } from '../utils/outlet';
});
```

See the [routing guide](https://emberjs.com/guides/routing/rendering-a-template/) for more
See the [routing guide](https://guides.emberjs.com/release/routing/rendering-a-template/) for more
information on how your `route` interacts with the `{{outlet}}` helper.
Note: Your content __will not render__ if there isn't an `{{outlet}}` for it.

Expand Down
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/computed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ if (EMBER_METAL_TRACKED_PROPERTIES) {

_Note: This is the preferred way to define computed properties when writing third-party
libraries that depend on or use Ember, since there is no guarantee that the user
will have [prototype Extensions](https://emberjs.com/guides/configuring-ember/disabling-prototype-extensions/) enabled._
will have [prototype Extensions](https://guides.emberjs.com/release/configuring-ember/disabling-prototype-extensions/) enabled._

The alternative syntax, with prototype extensions, might look like:

Expand Down
4 changes: 2 additions & 2 deletions packages/ember-routing/lib/system/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const { slice } = Array.prototype;

/**
The `EmberRouter` class manages the application state and URLs. Refer to
the [routing guide](https://emberjs.com/guides/routing/) for documentation.
the [routing guide](https://guides.emberjs.com/release/routing/) for documentation.

@class EmberRouter
@extends EmberObject
Expand Down Expand Up @@ -1419,7 +1419,7 @@ EmberRouter.reopenClass({
```

For more detailed documentation and examples please see
[the guides](https://emberjs.com/guides/routing/defining-your-routes/).
[the guides](https://guides.emberjs.com/release/routing/defining-your-routes/).

@method map
@param callback
Expand Down