/* Noty */ $(function() { var notes = []; notes[''] = 'This is a default notification message.'; notes['alert'] = 'This is an alert notification message.'; notes['error'] = 'This is an error notification message.'; notes['success'] = 'You successfully read this important message.'; notes['information'] = 'This is an information notification message!'; notes['notification'] = 'This alert needs your attention, but it\'s for demonstration purposes only.'; notes['warning'] = 'This is a warning for demonstration purposes.'; $('.noty').click(function() { var self = $(this); noty({ text: notes[self.data('type')], type: self.data('type'), dismissQueue: true, theme: 'agileUI', layout: self.data('layout') }); return false; }); });