fixed header height
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
name = Materio Personal Notes Module
|
||||
description = "Materio per user notes on node module"
|
||||
|
||||
; Core version (required)
|
||||
core = 7.x
|
||||
|
||||
; Package name (see http://drupal.org/node/542202 for a list of names)
|
||||
package = Materio
|
||||
|
||||
; PHP version requirement (optional)
|
||||
; php = 5.2
|
||||
|
||||
; Loadable code files
|
||||
; files[] = materio_ctools_automodal.module
|
||||
|
||||
; Module dependencies
|
||||
dependencies[] = user
|
||||
|
||||
; Configuration page
|
||||
; configure = admin/config/materiobasemod
|
||||
|
||||
; For further information about configuration options, see
|
||||
; - http://drupal.org/node/542202
|
@@ -1183,10 +1183,18 @@ function materio_search_api_advanced_search_select_callback($form, &$form_state)
|
||||
return $form['filters'];
|
||||
}
|
||||
function materio_search_api_advanced_search_addfilter_callback($form, &$form_state) {
|
||||
return $form['filters'];
|
||||
$commands = array();
|
||||
$commands[] = ajax_command_replace('#advancedsearch-filters-wrapper', render($form['filters']));
|
||||
$commands[] = array('command'=>'ajaxAfterAddedFilterLine');
|
||||
return array("#type"=>'ajax', "#commands"=>$commands);
|
||||
// return $form['filters'];
|
||||
}
|
||||
function materio_search_api_advanced_search_rmline_callback($form, &$form_state) {
|
||||
return $form['filters'];
|
||||
$commands = array();
|
||||
$commands[] = ajax_command_replace('#advancedsearch-filters-wrapper', render($form['filters']));
|
||||
$commands[] = array('command'=>'ajaxAfterRemovedFilterLine');
|
||||
return array("#type"=>'ajax', "#commands"=>$commands);
|
||||
// return $form['filters'];
|
||||
}
|
||||
|
||||
function materio_search_api_advanced_search_form_validate($form, &$form_state){
|
||||
|
Reference in New Issue
Block a user