change order of methods to match other extensions

This commit is contained in:
Chrissi2812 2019-05-15 09:52:09 +02:00
parent 39f942aca8
commit 20bcffc94a
No known key found for this signature in database
GPG Key ID: B4B82C7E618271DA

View File

@ -23,16 +23,16 @@ import TableNodes from './TableNodes'
export default class Table extends Node { export default class Table extends Node {
get name() {
return 'table'
}
get defaultOptions() { get defaultOptions() {
return { return {
resizable: true, resizable: true,
} }
} }
get name() {
return 'table'
}
get schema() { get schema() {
return TableNodes.table return TableNodes.table
} }