mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
33 lines
816 B
CoffeeScript
33 lines
816 B
CoffeeScript
$ = require 'jquery'
|
|
|
|
$.fn.scrollBottom = (newValue) ->
|
|
if newValue?
|
|
@scrollTop(newValue - @height())
|
|
else
|
|
@scrollTop() + @height()
|
|
|
|
$.fn.scrollRight = (newValue) ->
|
|
if newValue?
|
|
@scrollLeft(newValue - @width())
|
|
else
|
|
@scrollLeft() + @width()
|
|
|
|
$.fn.containsElement = (element) ->
|
|
(element[0].compareDocumentPosition(this[0]) & 8) == 8
|
|
|
|
$.fn.preempt = (eventName, handler) ->
|
|
@on eventName, (e, args...) ->
|
|
if handler(e, args...) == false then e.stopImmediatePropagation()
|
|
|
|
eventNameWithoutNamespace = eventName.split('.')[0]
|
|
handlers = @data('events')[eventNameWithoutNamespace]
|
|
handlers.unshift(handlers.pop())
|
|
|
|
$.fn.hasParent = ->
|
|
@parent()[0]?
|
|
|
|
$.fn.flashError = ->
|
|
@addClass 'error'
|
|
removeErrorClass = => @removeClass 'error'
|
|
window.setTimeout(removeErrorClass, 200)
|