Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
views_ui_js_load($js)
contributions/views/views_ui.module, line 298
Check to see if the incoming menu item is js capable or not.
<?php
function views_ui_js_load($js) {
if ($js == 'ajax') {
return TRUE;
}
return 0;
}
?>