function gridstack_library_info_alter in GridStack 8.2
Same name and namespace in other branches
- 8 gridstack.module \gridstack_library_info_alter()
Implements hook_library_info_alter().
File
- ./
gridstack.module, line 66 - Provides GridStack integration to have multi-column grids with drag-and-drop.
Code
function gridstack_library_info_alter(&$libraries, $extension) {
if ($extension === 'gridstack') {
gridstack('hook')
->libraryInfoAlter($libraries, $extension);
}
}