Skip to content

Instantly share code, notes, and snippets.

@rin
Created January 15, 2014 09:19
Show Gist options
  • Save rin/8433169 to your computer and use it in GitHub Desktop.
Save rin/8433169 to your computer and use it in GitHub Desktop.
Angular directive for a popup
app.directive 'ngPopup', [ ->
restrict: 'A'
link: (scope, element, attr) ->
element.click (e) ->
url = element.attr('href')
width = 575
height = 400
left = ($(window).width() - width) / 2
top = ($(window).height() - height) / 2
options = "status=1, width=#{width}, height=#{height}, top=#{top}, left=#{left}"
newWindow = window.open(url, '', options)
false
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment