Two arguments:
Success Normal Error Warning

One argument, array
lot text get text of textarea

VERY LOT TEXT Aliquam urna eros, cursus non magna maximus, tempus hendrerit arcu. Fusce a nulla semper, porta velit non, elementum turpis. Proin purus sem, lobortis eget eros et, commodo venenatis dui. Donec ultrices tempus felis eget feugiat. Etiam nec aliquam urna. Nam molestie purus vitae sapien sodales, non molestie dui interdum. Curabitur id posuere turpis. Mauris facilisis pharetra congue. Cras nec interdum est. Aenean sed nibh augue.


message and go to
		$.miniNoty({
			'class'       : 'miniNoty',
			timeoutToHide : 3000,  // timeout to hide
			timeoutAnimEnd: 500, // timeout animate in SCSS
			view          : 'normal',
			autoHide      : true,
			message       : 'Click me to go other website!',
			buttons       : [
				{
					name: 'Go',
					link: 'http://google.com',
					target: '_blank'
				}
			],
			allowButtonClose: false,

			redirect: 'http://ya.ru',
			blank         : true
		})
	

warning - Button:Go 1
	$.miniNoty({
		view: 'warning',
		message: 'Go or close me',
		buttons: [
			{
				name: 'Go 1',
				link: 'http://ya.ru',
				target: ''
			}
		],
		allowButtonClose: true
	})

Message have event redirect by click
		$(function () {
			$('.custom-option-2').click(function () {

				$.miniNoty({
					message: 'Click me for redirect',
					redirect: 'http://ya.ru'
				})

				return false;
			})
		})
	

Set new params timeoutToHide = 10 sec. Get new params
		$(function(){
			$('.setParam').click(function(){
				$.miniNotyConfig.set({
					timeoutToHide: 10000
				})
				return false;
			})

			$('.getParam').click(function(){
				console.log($.miniNotyConfig.get());
				return false;
			})
		})