You are here

public function GridStackEnginePluginBase::getIconBreakpoint in GridStack 8.2

Return the icon breakpoint to generate icon from.

Foundation or Bootstrap 3 has `lg` for the largest. Bootstrap 4 and all js|css-driven has `xl` for the largest.

File

src/GridStackEnginePluginBase.php, line 191

Class

GridStackEnginePluginBase
Provides base class for all gridstack layout engines.

Namespace

Drupal\gridstack

Code

public function getIconBreakpoint() {
  $keys = array_keys($this->sizes);
  return end($keys);
}