You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
344 B
12 lines
344 B
Dcat.DialogForm = function (options) {
|
|
$(options.buttonSelector).off('click').click(function () {
|
|
var url = $(this).data('url');
|
|
var windowWidth = window.innerWidth;
|
|
var popWidth = windowWidth < 1200 ? '80%' : '1000px';
|
|
top.openPop(url, options.title,[popWidth, '600px'])
|
|
return false;
|
|
});
|
|
};
|
|
|
|
|
|
|
|
|