This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/controllers/share_controller.js.coffee
2013-02-07 16:45:24 +01:00

15 lines
360 B
CoffeeScript

Discourse.ShareController = Ember.Controller.extend
# When the user clicks the post number, we pop up a share box
shareLink: (e, url) ->
x = e.pageX - 150
x = 25 if x < 25
$('#share-link').css(left: "#{x}px", top: "#{e.pageY - 100}px")
@set('link', url)
false
# Close the share controller
close: ->
@set('link', '')
false