Skip to content

Commit 73c3882

Browse files
author
James A. Rosen
committed
README: reference issues ##1, 2
1 parent 5c11eff commit 73c3882

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,21 @@ app more and more Ember-1.0-compatible.
2222
## `get` and `getPath`
2323

2424
In Ember 1.0, `get` works on property paths like `"foo.bar.baz"`; in Ember 0.9,
25-
it does not. This fork introduces a flag, `ENV.DOTTED_GETS`, with four
25+
it does not. This fork introduces a flag, `ENV.DOTTED_PATH_METHODS`, with four
2626
allowed values:
2727

28-
* `"0.9"` (the default) -- `getPath` works normally
29-
* `"0.9+warn"` -- `getPath` emits a warning via `Ember.warn`
30-
* `"0.9+deprecate"` -- `getPath` emits a deprecation warning via
28+
* `"0.9"` (the default) -- `getPath` and `setPath` work normally
29+
* `"0.9+warn"` -- `getPath` and `setPath` emit a warning via `Ember.warn`
30+
* `"0.9+deprecate"` -- `getPath` and `setPath` emit a deprecation warning via
3131
`Ember.deprecate`
32-
* `"1.0"` -- `getPath` raises an exception
32+
* `"1.0"` -- `getPath` and `setPath` raise exceptions
3333

3434
Regardless of the value of the flag, `get` now works on both dotted- and
3535
non-dotted paths, just as in 1.0.
3636

37+
See [issue #1](https://github.com/zendesk/ember.js/issues/1) for more
38+
information.
39+
3740
## `Ember.Object.create`
3841

3942
This backports the `create` and `createWithMixins` functionality from Ember 1.0
@@ -65,3 +68,6 @@ has four possible values:
6568
* `"1.0"`: Ember 1.0 compatibility; `Ember.Obect.create` will throw an
6669
exception if passed an `Ember.Mixin` or an object that contains an
6770
`Ember.ComputedProperty` or `Function` that calls `_super`.
71+
72+
See [issue #2](https://github.com/zendesk/ember.js/issues/2) for more
73+
information.

0 commit comments

Comments
 (0)