Prevent the lightbox from bleeding past the edges of the screen

This commit is contained in:
Zeusking19 2015-12-13 19:55:56 +00:00
parent 2de2b87653
commit 5f96ac4e26

View file

@ -20,7 +20,7 @@ angular.module('ponyfm').directive 'colorbox', ->
{
restrict: 'AC'
link: (scope, element, attrs) ->
$(element).colorbox attrs.colorbox
$(element).colorbox({maxWidth:'90%', maxHeight:'90%'})
return
}