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

[DOCS] Move to 0.3.2 in docs #739

Merged
merged 1 commit into from
Jul 15, 2020
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ optionally a Mobiledoc to load. For example:

```js
const simpleMobiledoc = {
version: "0.3.1",
version: "0.3.2",
markups: [],
atoms: [],
cards: [],
Expand Down Expand Up @@ -121,7 +121,7 @@ document's `<head>`:

### Editor API

* `editor.serialize(version="0.3.1")` - serialize the current post for persistence. Returns
* `editor.serialize(version="0.3.2")` - serialize the current post for persistence. Returns
Mobiledoc.
* `editor.destroy()` - teardown the editor event listeners, free memory etc.
* `editor.disableEditing()` - stop the user from being able to edit the
Expand Down
6 changes: 2 additions & 4 deletions tests/acceptance/cursor-movement-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,7 @@ test('left arrow when at the head of an atom moves the cursor left off the atom'
marker('cc')
])
]);
// TODO just make 0.3.1 default
}, '0.3.1');
});
editor = new Editor({mobiledoc, atoms});
editor.render(editorElement);

Expand Down Expand Up @@ -285,8 +284,7 @@ test('right arrow when at the head of an atom moves the cursor across the atom',
marker('cc')
])
]);
// TODO just make 0.3.1 default
}, '0.3.1');
});
editor = new Editor({mobiledoc, atoms});
editor.render(editorElement);

Expand Down