CRM-15705 - Style preview buttons and fix text preview conditions
[civicrm-core.git] / js / crm.ajax.js
CommitLineData
53f2643c
CW
1// https://civicrm.org/licensing
2/**
3 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/AJAX+Interface
4 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Ajax+Pages+and+Forms
5 */
1c1c1ae2 6(function($, CRM, undefined) {
53f2643c 7 /**
f0c9c7dd
CW
8 * @param string path
9 * @param string|object query
8d83b77c 10 * @param string mode - optionally specify "front" or "back"
53f2643c 11 */
0cc040cf 12 var tplURL;
f0c9c7dd
CW
13 CRM.url = function (path, query, mode) {
14 if (typeof path === 'object') {
f54254d8
TO
15 tplURL = path;
16 return path;
53f2643c 17 }
0cc040cf 18 if (!tplURL) {
bba9b4f0 19 CRM.console('error', 'Error: CRM.url called before initialization');
53f2643c 20 }
8d83b77c 21 if (!mode) {
f0c9c7dd 22 mode = CRM.config && CRM.config.isFrontend ? 'front' : 'back';
8d83b77c 23 }
f0c9c7dd 24 query = query || '';
29bc93ee 25 var frag = path.split('?');
f0c9c7dd 26 var url = tplURL[mode].replace("*path*", frag[0]);
53f2643c 27
f0c9c7dd
CW
28 if (!query) {
29 url = url.replace(/[?&]\*query\*/, '');
53f2643c
CW
30 }
31 else {
f0c9c7dd 32 url = url.replace("*query*", typeof query === 'string' ? query : $.param(query));
53f2643c
CW
33 }
34 if (frag[1]) {
f0c9c7dd 35 url += (url.indexOf('?') < 0 ? '?' : '&') + frag[1];
53f2643c
CW
36 }
37 return url;
38 };
39
bba9b4f0 40 // @deprecated
53f2643c
CW
41 $.extend ({'crmURL':
42 function (p, params) {
bba9b4f0 43 CRM.console('warn', 'Calling crmURL from jQuery is deprecated. Please use CRM.url() instead.');
53f2643c
CW
44 return CRM.url(p, params);
45 }
46 });
47
48 $.fn.crmURL = function () {
49 return this.each(function() {
50 if (this.href) {
51 this.href = CRM.url(this.href);
52 }
53 });
54 };
55
56 /**
57 * AJAX api
58 */
59 CRM.api3 = function(entity, action, params, status) {
60 if (typeof(entity) === 'string') {
61 params = {
62 entity: entity,
63 action: action.toLowerCase(),
64 json: JSON.stringify(params || {})
65 };
66 } else {
67 params = {
68 entity: 'api3',
69 action: 'call',
70 json: JSON.stringify(entity)
e4f4dc22
CW
71 };
72 status = action;
53f2643c
CW
73 }
74 var ajax = $.ajax({
75 url: CRM.url('civicrm/ajax/rest'),
76 dataType: 'json',
77 data: params,
78 type: params.action.indexOf('get') < 0 ? 'POST' : 'GET'
79 });
80 if (status) {
81 // Default status messages
82 if (status === true) {
83 status = {success: params.action === 'delete' ? ts('Removed') : ts('Saved')};
84 if (params.action.indexOf('get') === 0) {
85 status.start = ts('Loading...');
86 status.success = null;
87 }
88 }
89 var messages = status === true ? {} : status;
90 CRM.status(status, ajax);
91 }
92 return ajax;
93 };
94
95 /**
96 * @deprecated
97 * AJAX api
98 */
99 CRM.api = function(entity, action, params, options) {
100 // Default settings
101 var settings = {
102 context: null,
103 success: function(result, settings) {
104 return true;
105 },
106 error: function(result, settings) {
107 $().crmError(result.error_message, ts('Error'));
108 return false;
109 },
110 callBack: function(result, settings) {
111 if (result.is_error == 1) {
112 return settings.error.call(this, result, settings);
113 }
114 return settings.success.call(this, result, settings);
115 },
116 ajaxURL: 'civicrm/ajax/rest'
117 };
118 action = action.toLowerCase();
119 // Default success handler
120 switch (action) {
121 case "update":
122 case "create":
123 case "setvalue":
124 case "replace":
125 settings.success = function() {
126 CRM.status(ts('Saved'));
127 return true;
128 };
129 break;
130 case "delete":
131 settings.success = function() {
132 CRM.status(ts('Removed'));
133 return true;
134 };
135 }
136 params = {
137 entity: entity,
138 action: action,
139 json: JSON.stringify(params)
140 };
141 // Pass copy of settings into closure to preserve its value during multiple requests
142 (function(stg) {
143 $.ajax({
144 url: stg.ajaxURL.indexOf('http') === 0 ? stg.ajaxURL : CRM.url(stg.ajaxURL),
145 dataType: 'json',
146 data: params,
147 type: action.indexOf('get') < 0 ? 'POST' : 'GET',
148 success: function(result) {
149 stg.callBack.call(stg.context, result, stg);
150 }
151 });
152 })($.extend({}, settings, options));
153 };
154
155 /**
156 * Backwards compatible with jQuery fn
157 * @deprecated
158 */
159 $.fn.crmAPI = function(entity, action, params, options) {
bba9b4f0 160 CRM.console('warn', 'Calling crmAPI from jQuery is deprecated. Please use CRM.api3() instead.');
53f2643c
CW
161 return CRM.api.call(this, entity, action, params, options);
162 };
163
164 $.widget('civi.crmSnippet', {
165 options: {
166 url: null,
167 block: true,
168 crmForm: null
169 },
170 _originalContent: null,
171 _originalUrl: null,
172 isOriginalUrl: function() {
173 var
174 args = {},
175 same = true,
176 newUrl = this._formatUrl(this.options.url),
177 oldUrl = this._formatUrl(this._originalUrl);
178 // Compare path
179 if (newUrl.split('?')[0] !== oldUrl.split('?')[0]) {
180 return false;
181 }
182 // Compare arguments
183 $.each(newUrl.split('?')[1].split('&'), function(k, v) {
184 var arg = v.split('=');
185 args[arg[0]] = arg[1];
186 });
187 $.each(oldUrl.split('?')[1].split('&'), function(k, v) {
188 var arg = v.split('=');
189 if (args[arg[0]] !== undefined && arg[1] !== args[arg[0]]) {
190 same = false;
191 }
192 });
193 return same;
194 },
195 resetUrl: function() {
196 this.options.url = this._originalUrl;
197 },
198 _create: function() {
199 this.element.addClass('crm-ajax-container');
200 if (!this.element.is('.crm-container *')) {
201 this.element.addClass('crm-container');
202 }
203 this._handleOrderLinks();
204 // Set default if not supplied
205 this.options.url = this.options.url || document.location.href;
206 this._originalUrl = this.options.url;
207 },
3e897159
CW
208 _onFailure: function(data, status) {
209 var msg, title = ts('Network Error');
f54254d8 210 if (this.options.block) this.element.unblock();
53f2643c 211 this.element.trigger('crmAjaxFail', data);
3e897159
CW
212 switch (status) {
213 case 'Forbidden':
214 title = ts('Access Denied');
215 msg = ts('Ensure you are still logged in and have permission to access this feature.');
216 break;
217 default:
218 msg = ts('Unable to reach the server. Please refresh this page in your browser and try again.');
219 }
220 CRM.alert(msg, title, 'error');
53f2643c 221 },
61cab70a
CW
222 _onError: function(data) {
223 this.element.attr('data-unsaved-changes', 'false').trigger('crmAjaxError', data);
f7aaf23c 224 if (this.options.crmForm && this.options.crmForm.autoClose && this.element.data('uiDialog')) {
61cab70a
CW
225 this.element.dialog('close');
226 }
227 },
53f2643c
CW
228 _formatUrl: function(url) {
229 // Strip hash
230 url = url.split('#')[0];
231 // Add snippet argument to url
232 if (url.search(/[&?]snippet=/) < 0) {
233 url += (url.indexOf('?') < 0 ? '?' : '&') + 'snippet=json';
234 } else {
235 url = url.replace(/snippet=[^&]*/, 'snippet=json');
236 }
237 return url;
238 },
239 // Hack to deal with civicrm legacy sort functionality
240 _handleOrderLinks: function() {
241 var that = this;
242 $('a.crm-weight-arrow', that.element).click(function(e) {
f54254d8 243 if (that.options.block) that.element.block();
53f2643c
CW
244 $.getJSON(that._formatUrl(this.href)).done(function() {
245 that.refresh();
246 });
247 e.stopImmediatePropagation();
248 return false;
249 });
250 },
251 refresh: function() {
252 var that = this;
253 var url = this._formatUrl(this.options.url);
f54254d8 254 if (this.options.crmForm) $('form', this.element).ajaxFormUnbind();
7e13d44e
CW
255 if (this._originalContent === null) {
256 this._originalContent = this.element.contents().detach();
257 }
f54254d8 258 if (this.options.block) this.element.block();
53f2643c 259 $.getJSON(url, function(data) {
f54254d8 260 if (that.options.block) that.element.unblock();
61cab70a 261 if (!$.isPlainObject(data)) {
53f2643c
CW
262 that._onFailure(data);
263 return;
264 }
61cab70a
CW
265 if (data.status === 'error') {
266 that._onError(data);
267 return;
268 }
53f2643c 269 data.url = url;
deb6ebbb 270 that.element.trigger('crmUnload').trigger('crmBeforeLoad', data);
66663184
CW
271 that._beforeRemovingContent();
272 that.element.html(data.content);
53f2643c
CW
273 that._handleOrderLinks();
274 that.element.trigger('crmLoad', data);
f54254d8 275 if (that.options.crmForm) that.element.trigger('crmFormLoad', data);
3e897159
CW
276 }).fail(function(data, msg, status) {
277 that._onFailure(data, status);
53f2643c
CW
278 });
279 },
66663184
CW
280 // Perform any cleanup needed before removing/replacing content
281 _beforeRemovingContent: function() {
282 var that = this;
283 if (window.tinyMCE && tinyMCE.editors) {
284 $.each(tinyMCE.editors, function(k) {
285 if ($.contains(that.element[0], this.getElement())) {
286 this.remove();
287 }
288 });
289 }
f54254d8 290 if (this.options.crmForm) $('form', this.element).ajaxFormUnbind();
66663184 291 },
53f2643c 292 _destroy: function() {
af8c0ebe 293 this.element.removeClass('crm-ajax-container').trigger('crmUnload');
66663184 294 this._beforeRemovingContent();
53f2643c
CW
295 if (this._originalContent !== null) {
296 this.element.empty().append(this._originalContent);
297 }
298 }
299 });
300
98465f9e
CW
301 var dialogCount = 0,
302 exclude = '[href^=#], [href^=javascript], [onclick], .no-popup, .cancel';
303
53f2643c
CW
304 CRM.loadPage = function(url, options) {
305 var settings = {
306 target: '#crm-ajax-dialog-' + (dialogCount++),
307 dialog: false
308 };
309 if (!options || !options.target) {
310 settings.dialog = {
311 modal: true,
312 width: '65%',
313 height: '75%'
314 };
315 }
f54254d8 316 if (options) $.extend(true, settings, options);
53f2643c
CW
317 settings.url = url;
318 // Create new dialog
319 if (settings.dialog) {
320 // HACK: jQuery UI doesn't support relative height
a1c7d42f 321 if (typeof settings.dialog.height === 'string' && settings.dialog.height.indexOf('%') > 0) {
53f2643c
CW
322 settings.dialog.height = parseInt($(window).height() * (parseFloat(settings.dialog.height)/100), 10);
323 }
f701800d
CW
324 // Increase percent width on small screens
325 if (typeof settings.dialog.width === 'string' && settings.dialog.width.indexOf('%') > 0) {
326 var screenWidth = $(window).width(),
327 percentage = parseInt(settings.dialog.width.replace('%', ''), 10),
328 gap = 100-percentage;
329 if (screenWidth < 701) {
330 settings.dialog.width = '100%';
331 }
332 else if (screenWidth < 1400) {
333 settings.dialog.width = '' + parseInt(percentage+gap-((screenWidth - 700)/7*(gap)/100), 10) + '%';
334 }
335 }
53f2643c 336 $('<div id="'+ settings.target.substring(1) +'"><div class="crm-loading-element">' + ts('Loading') + '...</div></div>').dialog(settings.dialog);
73d2716e
CW
337 $(settings.target)
338 .on('dialogclose', function() {
339 if ($(this).attr('data-unsaved-changes') !== 'true') {
340 $(this).crmSnippet('destroy').dialog('destroy').remove();
341 }
342 })
343 .on('crmLoad', function(e, data) {
344 // Set title
345 if (e.target === $(settings.target)[0] && data && !settings.dialog.title && data.title) {
346 $(this).dialog('option', 'title', data.title);
347 }
73d2716e 348 });
53f2643c
CW
349 }
350 $(settings.target).crmSnippet(settings).crmSnippet('refresh');
351 return $(settings.target);
352 };
353 CRM.loadForm = function(url, options) {
55cb6db1 354 var formErrors = [], settings = {
53f2643c
CW
355 crmForm: {
356 ajaxForm: {},
357 autoClose: true,
358 validate: true,
02c82dda 359 refreshAction: ['next_new', 'submit_savenext', 'upload_new'],
98465f9e 360 cancelButton: '.cancel',
5fffbbe4 361 openInline: 'a.open-inline, a.button, a.action-item, a.open-inline-noreturn',
1c1c1ae2 362 onCancel: function(event) {}
53f2643c
CW
363 }
364 };
365 // Move options that belong to crmForm. Others will be passed through to crmSnippet
f54254d8 366 if (options) $.each(options, function(key, value) {
53f2643c
CW
367 if (typeof(settings.crmForm[key]) !== 'undefined') {
368 settings.crmForm[key] = value;
369 }
370 else {
371 settings[key] = value;
372 }
373 });
374
375 var widget = CRM.loadPage(url, settings).off('.crmForm');
376
f582fc8f 377 // CRM-14353 - Warn of unsaved changes for all forms except those which have opted out
88e9380e 378 function cancelAction() {
e9a3e054 379 var dirty = CRM.utils.initialValueChanged($('form:not([data-warn-changes=false])', widget));
c4e00dbb 380 widget.attr('data-unsaved-changes', dirty ? 'true' : 'false');
7c2110fd
CW
381 if (dirty) {
382 var id = widget.attr('id') + '-unsaved-alert',
e9a3e054 383 title = widget.dialog('option', 'title'),
15d60951 384 alert = CRM.alert('<p>' + ts('%1 has not been saved.', {1: title}) + '</p><p><a href="#" id="' + id + '">' + ts('Restore') + '</a></p>', ts('Unsaved Changes'), 'alert unsaved-dialog', {expires: 60000});
8537b332 385 $('#' + id).button({icons: {primary: 'ui-icon-arrowreturnthick-1-w'}}).click(function(e) {
15d60951 386 widget.attr('data-unsaved-changes', 'false').dialog('open');
8537b332 387 e.preventDefault();
7c2110fd 388 });
88e9380e 389 }
88e9380e 390 }
c4e00dbb 391
f54254d8 392 if (widget.data('uiDialog')) widget.on('dialogbeforeclose', function(e) {
c4e00dbb
CW
393 // CRM-14353 - Warn unsaved changes if user clicks close button or presses "esc"
394 if (e.originalEvent) {
395 cancelAction();
396 }
397 });
88e9380e 398
53f2643c 399 widget.on('crmFormLoad.crmForm', function(event, data) {
298f69da
CW
400 var $el = $(this).attr('data-unsaved-changes', 'false'),
401 settings = $el.crmSnippet('option', 'crmForm');
f54254d8 402 if (settings.cancelButton) $(settings.cancelButton, this).click(function(e) {
7c2110fd
CW
403 e.preventDefault();
404 var returnVal = settings.onCancel.call($el, e);
53f2643c 405 if (returnVal !== false) {
7c2110fd 406 $el.trigger('crmFormCancel', e);
53f2643c 407 if ($el.data('uiDialog') && settings.autoClose) {
7c2110fd 408 cancelAction();
c4e00dbb 409 $el.dialog('close');
53f2643c
CW
410 }
411 else if (!settings.autoClose) {
412 $el.crmSnippet('resetUrl').crmSnippet('refresh');
413 }
414 }
53f2643c
CW
415 });
416 if (settings.validate) {
3d527838 417 $("form", this).crmValidate();
53f2643c 418 }
cae80d9f 419 $("form:not('[data-no-ajax-submit=true]')", this).ajaxForm($.extend({
53f2643c
CW
420 url: data.url.replace(/reset=1[&]?/, ''),
421 dataType: 'json',
422 success: function(response) {
1c1c1ae2 423 if (response.content === undefined) {
53f2643c
CW
424 $el.trigger('crmFormSuccess', response);
425 // Reset form for e.g. "save and new"
0a94ab7d 426 if (response.userContext && (response.status === 'redirect' || (settings.refreshAction && $.inArray(response.buttonName, settings.refreshAction) >= 0))) {
b305fb88
CW
427 // Force reset of original url
428 $el.data('civiCrmSnippet')._originalUrl = response.userContext;
429 $el.crmSnippet('resetUrl').crmSnippet('refresh');
53f2643c 430 }
9317128c
CW
431 // Close if we are on the original url or the action was "delete" (in which case returning to view may be inappropriate)
432 else if ($el.data('uiDialog') && (settings.autoClose || response.action === 8)) {
53f2643c
CW
433 $el.dialog('close');
434 }
435 else if (settings.autoClose === false) {
436 $el.crmSnippet('resetUrl').crmSnippet('refresh');
437 }
438 }
439 else {
f54254d8 440 if ($el.crmSnippet('option', 'block')) $el.unblock();
53f2643c 441 response.url = data.url;
1c1c1ae2
CW
442 $el.html(response.content).trigger('crmLoad', response).trigger('crmFormLoad', response);
443 if (response.status === 'form_error') {
55cb6db1 444 formErrors = [];
1c1c1ae2
CW
445 $el.trigger('crmFormError', response);
446 $.each(response.errors || [], function(formElement, msg) {
55cb6db1 447 formErrors.push($('[name="'+formElement+'"]', $el).crmError(msg));
1c1c1ae2
CW
448 });
449 }
53f2643c
CW
450 }
451 },
452 beforeSerialize: function(form, options) {
453 if (window.CKEDITOR && window.CKEDITOR.instances) {
454 $.each(CKEDITOR.instances, function() {
f54254d8 455 if (this.updateElement) this.updateElement();
53f2643c
CW
456 });
457 }
66663184
CW
458 if (window.tinyMCE && tinyMCE.editors) {
459 $.each(tinyMCE.editors, function() {
460 this.save();
461 });
462 }
53f2643c
CW
463 },
464 beforeSubmit: function(submission) {
55cb6db1 465 $.each(formErrors, function() {
f54254d8 466 if (this && this.close) this.close();
55cb6db1 467 });
f54254d8 468 if ($el.crmSnippet('option', 'block')) $el.block();
53f2643c
CW
469 $el.trigger('crmFormSubmit', submission);
470 }
471 }, settings.ajaxForm));
472 if (settings.openInline) {
473 settings.autoClose = $el.crmSnippet('isOriginalUrl');
98465f9e 474 $(settings.openInline, this).not(exclude + ', .crm-popup').click(function(event) {
5fffbbe4
CW
475 if ($(this).hasClass('open-inline-noreturn')) {
476 // Force reset of original url
477 $el.data('civiCrmSnippet')._originalUrl = $(this).attr('href');
478 }
53f2643c
CW
479 $el.crmSnippet('option', 'url', $(this).attr('href')).crmSnippet('refresh');
480 return false;
481 });
482 }
298f69da
CW
483 // Show form buttons as part of the dialog
484 if ($el.data('uiDialog')) {
d34e9db0
CW
485 var buttonContainers = '.crm-submit-buttons, .action-link',
486 buttons = [],
487 added = [];
488 $(buttonContainers, $el).find('input.crm-form-submit, a.button').each(function() {
298f69da
CW
489 var $el = $(this),
490 label = $el.is('input') ? $el.attr('value') : $el.text(),
491 identifier = $el.attr('name') || $el.attr('href');
492 if (!identifier || identifier === '#' || $.inArray(identifier, added) < 0) {
d34e9db0 493 var $icon = $el.find('.icon'),
abbecaf2 494 button = {'data-identifier': identifier, text: label, click: function() {
19ec1d6e 495 $el[0].click();
d34e9db0
CW
496 }};
497 if ($icon.length) {
498 button.icons = {primary: $icon.attr('class')};
298f69da 499 } else {
deae896d 500 var action = $el.attr('crm-icon') || ($el.hasClass('cancel') ? 'close' : 'check');
d34e9db0 501 button.icons = {primary: 'ui-icon-' + action};
298f69da
CW
502 }
503 buttons.push(button);
504 added.push(identifier);
505 }
d34e9db0 506 // display:none causes the form to not submit when pressing "enter"
e22a8e7a 507 $el.parents(buttonContainers).css({height: 0, padding: 0, margin: 0, overflow: 'hidden'}).find('.crm-button-icon').hide();
298f69da
CW
508 });
509 $el.dialog('option', 'buttons', buttons);
510 }
022d2163 511 // Allow a button to prevent ajax submit
1e29624c
CW
512 $('input[data-no-ajax-submit=true]').click(function() {
513 $(this).closest('form').ajaxFormUnbind();
514 });
53f2643c 515 // For convenience, focus the first field
b18392cc 516 $('input[type=text], textarea, select', this).filter(':visible').first().not('.dateplugin').focus();
53f2643c
CW
517 });
518 return widget;
519 };
520 /**
022d2163 521 * Handler for jQuery click event e.g. $('a').click(CRM.popup);
53f2643c 522 */
35df910c 523 CRM.popup = function(e) {
53f2643c
CW
524 var $el = $(this).first(),
525 url = $el.attr('href'),
526 popup = $el.data('popup-type') === 'page' ? CRM.loadPage : CRM.loadForm,
527 settings = $el.data('popup-settings') || {},
7fe745d1 528 formSuccess = false;
53f2643c 529 settings.dialog = settings.dialog || {};
35df910c 530 if (e.isDefaultPrevented() || !CRM.config.ajaxPopupsEnabled || !url || $el.is(exclude)) {
53f2643c
CW
531 return;
532 }
a1c7d42f
CW
533 // Sized based on css class
534 if ($el.hasClass('small-popup')) {
53f2643c
CW
535 settings.dialog.width = 400;
536 settings.dialog.height = 300;
537 }
538 else if ($el.hasClass('medium-popup')) {
539 settings.dialog.width = settings.dialog.height = '50%';
540 }
53f2643c
CW
541 var dialog = popup(url, settings);
542 // Trigger events from the dialog on the original link element
543 $el.trigger('crmPopupOpen', [dialog]);
4b472ff2
CW
544 // Listen for success events and buffer them so we only trigger once
545 dialog.on('crmFormSuccess.crmPopup crmPopupFormSuccess.crmPopup', function() {
7fe745d1
CW
546 formSuccess = true;
547 });
548 dialog.on('dialogclose.crmPopup', function(e, data) {
549 if (formSuccess) {
550 $el.trigger('crmPopupFormSuccess', [dialog, data]);
551 }
552 $el.trigger('crmPopupClose', [dialog, data]);
53f2643c 553 });
35df910c 554 e.preventDefault();
53f2643c 555 };
554b1768 556 /**
7e9fdecf 557 * An event callback for CRM.popup or a standalone function to refresh the content around a given element
022d2163 558 * @param e {event|selector}
554b1768
CW
559 */
560 CRM.refreshParent = function(e) {
561 // Use e.target if input smells like an event, otherwise assume it's a jQuery selector
562 var $el = (e.stopPropagation && e.target) ? $(e.target) : $(e),
563 $table = $el.closest('.dataTable');
564 // Call native refresh method on ajax datatables
022d2163 565 if ($table.length && $.fn.DataTable.fnIsDataTable($table[0]) && $table.dataTable().fnSettings().sAjaxSource) {
554b1768
CW
566 // Refresh ALL datatables - needed for contact relationship tab
567 $.each($.fn.dataTable.fnTables(), function() {
f54254d8 568 if ($(this).dataTable().fnSettings().sAjaxSource) $(this).unblock().dataTable().fnDraw();
554b1768
CW
569 });
570 }
571 // Otherwise refresh the nearest crmSnippet
572 else {
573 $el.closest('.crm-ajax-container, #crm-main-content-wrapper').crmSnippet().crmSnippet('refresh');
574 }
575 };
a1c7d42f
CW
576
577 $(function($) {
15d60951
CW
578 $('body')
579 .on('click', 'a.crm-popup', CRM.popup)
580 // Close unsaved dialog messages
581 .on('dialogopen', function(e) {
582 $('.alert.unsaved-dialog .ui-notify-cross', '#crm-notification-container').click();
583 })
584 // Destroy old unsaved dialog
585 .on('dialogcreate', function(e) {
586 $('.ui-dialog-content.crm-ajax-container:hidden[data-unsaved-changes=true]').crmSnippet('destroy').dialog('destroy').remove();
e5e90ec9
CW
587 })
588 // Auto-resize dialogs when loading content
589 .on('crmLoad', 'div.ui-dialog.ui-resizable.crm-container', function(e) {
590 var
591 $wrapper = $(this),
592 $dialog = $wrapper.children('.ui-dialog-content');
593 // small delay to allow contents to render
594 window.setTimeout(function() {
595 var currentHeight = $wrapper.outerHeight(),
596 padding = currentHeight - $dialog.height(),
597 newHeight = $dialog.prop('scrollHeight') + padding,
598 menuHeight = $('#civicrm-menu').outerHeight(),
599 maxHeight = $(window).height() - menuHeight;
600 newHeight = newHeight > maxHeight ? maxHeight : newHeight;
601 if (newHeight > (currentHeight + 15)) {
602 $dialog.dialog('option', {
603 position: {my: 'center', at: 'center center+' + (menuHeight / 2), of: window},
604 height: newHeight
605 });
606 }
607 }, 500);
15d60951 608 });
a1c7d42f
CW
609 });
610
53f2643c 611}(jQuery, CRM));