You are here

function imageeditor_close in Image Editor 7

Same name and namespace in other branches
  1. 6 imageeditor.module \imageeditor_close()

AJAX callback to close the editor.

1 string reference to 'imageeditor_close'
imageeditor_menu in ./imageeditor.module
Implements hook_menu().

File

./imageeditor.pages.inc, line 31
Different pages for Image Editor module.

Code

function imageeditor_close($codename) {
  drupal_add_js(drupal_get_path('module', 'imageeditor') . '/js/imageeditor.close.js');
  return '';
}