first commit
This commit is contained in:
19
public/bower_components/messenger/docs/welcome/javascripts/execute.coffee
vendored
Executable file
19
public/bower_components/messenger/docs/welcome/javascripts/execute.coffee
vendored
Executable file
@@ -0,0 +1,19 @@
|
||||
$.fn.executr = (opts) ->
|
||||
defaults =
|
||||
codeSelector: 'code[executable]'
|
||||
|
||||
opts = $.extend {}, defaults, opts
|
||||
|
||||
this.on 'click', opts.codeSelector, (e) ->
|
||||
$target = $ e.target
|
||||
$code = $target.parents(opts.codeSelector)
|
||||
|
||||
ctx = window
|
||||
if opts.setUp?
|
||||
CoffeeScript.run opts.setUp, ctx
|
||||
|
||||
CoffeeScript.run $code.text(), ctx
|
||||
|
||||
if opts.tearDown?
|
||||
CoffeeScript.run opts.tearDown, ctx
|
||||
|
||||
Reference in New Issue
Block a user