Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 582 Bytes

Growl.md

File metadata and controls

33 lines (24 loc) · 582 Bytes

Growl

Installation

"loveorigami/yii2-notification-wrapper": "*",
"bower-asset/jquery-growl": "*"

to the require section of your composer.json file.

Usage

use lo\modules\noty\widgets\Wrapper;

echo Wrapper::widget([
    'layerClass' => 'lo\modules\noty\widgets\layers\Growl',
    'options' => [
       'fixed' => true,
       'size' => 'medium',
       'style' => 'default',
       'location' => 'tr',
       'delayOnHover' => true,

        // and more for this library here https://github.com/ksylvest/jquery-growl
    ],
]);