sir_trevor-8.x-1.x-dev/blocks/ordered_list/ordered_list.js
blocks/ordered_list/ordered_list.js
/*
Ordered List
*/
(function($) {
SirTrevor.Blocks.OrderedList = (function() {
return SirTrevor.Blocks.List.extend({
type: "ordered_list",
icon_name: 'ordered_list',
editorHTML: '<ol class="st-list-block__list"></ol>',
setupListVariables: function() {
this.ul = this.inner.querySelector('ol');
}
});
})();
})(jQuery);