function skinr_ui_command_afterupdate in Skinr 6.2
Update a skinr area.
Parameters
$title: The title of the modal.
$html: The html to place within the modal.
1 call to skinr_ui_command_afterupdate()
- skinr_ui_edit in ./skinr_ui.module 
- Menu callback; prepares some variables and displays a Skinr edit form.
File
- ./skinr_ui.module, line 557 
Code
function skinr_ui_command_afterupdate($module, $sids, $classes_old, $classes_new, $css = array(), $js = array()) {
  return array(
    'command' => 'skinrAfterupdate',
    'module' => $module,
    'sids' => $sids,
    'classes' => array(
      'remove' => $classes_old,
      'add' => $classes_new,
    ),
    'css' => $css,
    'js' => $js,
  );
}