summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js/settings-personal.js
blob: 1c7aea0b9d65754a600b9e575bb89ce6a25c414c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(document).ready(function() {

	$('#fileSharingSettings button.pop-up').click(function() {
		var url = $(this).data('url');
		if (url) {
			var width = 600;
			var height = 400;
			var left = (screen.width/2)-(width/2);
			var top = (screen.height/2)-(height/2);

			window.open(url, 'name', 'width=' + width + ', height=' + height + ', top=' + top + ', left=' + left);
		}
	});

});