You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/SoftMng/Content/simditor-master/src/buttons/outdent.coffee

20 lines
320 B
CoffeeScript

class OutdentButton extends Button
name: 'outdent'
icon: 'outdent'
_init: ->
hotkey = if @editor.opts.tabIndent == false then '' else ' (Shift + Tab)'
@title = @_t(@name) + hotkey
super()
_status: ->
command: ->
@editor.indentation.indent(true)
Simditor.Toolbar.addButton OutdentButton