How to customize the title of a frame opened in automodal

Comments

dsnopek’s picture

Issue summary: View changes
Status: Active » Fixed

Either by customizing the title of the page you are loading (using normal Drupal tricks) or in Javascript loaded in a custom module.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

Alan.D’s picture

I wonder how this can be done for Drupal 7 with javascript modification. Unfortunately, the following code doesn't work for title part:

Drupal.automodal.settingsAlter.testing = function(settings) {
  settings.autoFit = false;
  settings.width = 840;
  settings.height = 530;
  settings.title = 'Custom title' ;
  return settings;
}