Socket
Book a DemoInstallSign in
Socket

notific

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

notific

Extremely simple amd module for notifications

0.1.3
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

Notific

Простейший amd-модуль(пока) для показа уведомлений. Для работы требуется jQuery.

Доступные методы

.config(params)

Позволяет настроить модуль.

require(['notific'], function(Notific){
    Notific.config({

        // имена стилей генерируемой верстки
        // возможные поля: body, container, top, bottom, 
        // notification, default, error, success, warning, 
        // title, text, close
        css: {
            title: 'super-mega-title'
        },

        // ширина уведомления, можно в процентах от ширины экрана
        width: 360,

        // положение уведомлений
        // может принимать значения 'top', 'bottom'
        // по умолчанию 'bottom'
        position: 'bottom',

        // использовать дизайн bootstrap вместо обычного
        // для работы опции должна быть подключена css-ка bootstarap-а
        // по умолчанию false
        bootstrap: false
    });
});

.show(options)

Показывает уведомление

require(['notific'], function(Notific){
    Notific.show({
        // по умолчанию 'Notification'
        title: 'Notification title',

        text: 'Notification message',

        // может принимать значения 'default', 'error', 'success', 'warning'
        // по умолчанию default
        type: 'default',

        // время автозакрытия уведомления. false для отмены автозакрытия
        // по умолчанию 5000
        timeout: false,

        // может принимать значения 'top', 'bottom'
        // по умолчанию 'bottom'
        // DEPRECATED
        position: 'bottom'
    });
});

.error(options)

Показывает уведомление об ошибке

require(['notific'], function(Notific){
    Notific.error({
        title: 'Notification title',
        text: 'Notification message',
        timeout: 5000,
        position: 'bottom'
    });
});

.success(options)

Показывает уведомление об успешном действии. options идентичны опциям метода .error

.warning(options)

Показывает предупреждение. options идентичны опциям метода .error

#English (coming soon)

Keywords

notific

FAQs

Package last updated on 06 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.