Skip to content
This repository was archived by the owner on Nov 4, 2019. It is now read-only.

Commit 417b799

Browse files
committed
Export plain arrays instead of Ember.NativeArray.
1 parent 84c0dc3 commit 417b799

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

addon/default-options.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
import Ember from 'ember';
2-
3-
const { A } = Ember;
4-
51
// Options: https://github.com/yabwe/medium-editor/blob/master/OPTIONS.md
62
export default {};
73

84
// List of "first class" options that can be passed directly to component
9-
export const optionsList = new A([
5+
export const optionsList = [
106
'delay', 'disableReturn', 'disableEditing', 'extensions', 'spellcheck',
117
'targetBlank', 'toolbar', 'anchorPreview', 'placeholder', 'imageDragging'
12-
]);
8+
];

0 commit comments

Comments
 (0)