mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-07-17 06:19:51 +02:00
7 lines
152 B
CoffeeScript
7 lines
152 B
CoffeeScript
class BaseEvent
|
|
constructor: (@name) ->
|
|
@prevent = false
|
|
preventDefault:()->
|
|
@prevent = true
|
|
|
|
this.OS.GUI.BaseEvent = BaseEvent |