function icomoon_default_settings in Icomoon 7
Provide default bundle settings.
2 calls to icomoon_default_settings()
- icomoon_icon_providers in ./
icomoon.module - Implements hook_icon_providers().
- icomoon_process_attached in ./
icomoon.module - Attach callback for an IcoMoon bundle.
File
- ./
icomoon.module, line 12 - icomoon.module Integrates the Icomoon service as an icon provider for Icon API.
Code
function icomoon_default_settings() {
return array(
// @todo set this back to 1 once core can handle JS browser conditions in
// drupal_add_js().
// @see https://drupal.org/node/865536
'ie7' => 0,
'tag' => 'span',
);
}