You are here

function fusion_apply_js_load in Fusion Accelerator 7

Same name and namespace in other branches
  1. 7.2 fusion_apply/fusion_apply_ui.module \fusion_apply_js_load()

Helper function to determine if ajax is used to call a function.

File

fusion_apply/fusion_apply_ui.module, line 211
Handles Fusion Apply UI functionality allowing users to apply skins to their site.

Code

function fusion_apply_js_load($js = 'nojs') {
  if ($js == 'ajax') {
    return TRUE;
  }
  return 0;
}