bufferapp integration

This commit is contained in:
Athou
2013-05-15 22:39:02 +02:00
parent 121daacf94
commit 62eae4c630
3 changed files with 22 additions and 13 deletions

View File

@@ -7,7 +7,7 @@ module.directive('popup', function() {
return {
link : function(scope, elm, attrs) {
elm.bind('click', function(event) {
window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');
window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=800');
event.preventDefault();
});
}