function imageeditor_paintweb_initialize_callback in Image Editor 7
1 string reference to 'imageeditor_paintweb_initialize_callback'
- paintweb.inc in plugins/editor/ paintweb/ paintweb.inc 
- Paintweb editor for Image Editor module.
File
- plugins/editor/ paintweb/ paintweb.inc, line 28 
- Paintweb editor for Image Editor module.
Code
function imageeditor_paintweb_initialize_callback(&$editor) {
  if (module_exists('libraries')) {
    drupal_add_js(libraries_get_path('paintweb') . '/build/paintweb.src.js');
  }
  else {
    drupal_add_js('sites/all/libraries/paintweb' . '/build/paintweb.src.js');
  }
}