diff --git a/resources/assets/js/bright/bright.js b/resources/assets/js/bright/bright.js index e51ae0e2..4f41888b 100644 --- a/resources/assets/js/bright/bright.js +++ b/resources/assets/js/bright/bright.js @@ -126,8 +126,7 @@ function brightJs() { opacity: 0.6, helper: _gridSortHelper, update: _gridSortUpdateHandler - }) - .disableSelection(); + }); $('[grid-sortable]') .sortable({ @@ -137,8 +136,7 @@ function brightJs() { opacity: 0.6, helper: _gridSortHelper, update: _gridSortUpdateHandler - }) - .disableSelection(); + }); $('[sortables]') .sortable({ @@ -146,8 +144,7 @@ function brightJs() { handle: '[sortable]', placeholder: 'state-highlight', opacity: 0.6 - }) - .disableSelection(); + }); } if ($.fn.waypoint) { diff --git a/resources/assets/js/bright/helpers.js b/resources/assets/js/bright/helpers.js index cb024fe7..ade02eb6 100644 --- a/resources/assets/js/bright/helpers.js +++ b/resources/assets/js/bright/helpers.js @@ -156,12 +156,12 @@ function notify(message) { new Noty({ text: message.text, type: message.type || 'error', - layout: 'topRight', + layout: 'bottomRight', theme: 'nest', dismissQueue: false, - timeout: (1 * 60 * 1000), + timeout: 30 * 1000, progressBar: true, - maxVisible: 1, + maxVisible: 5, killer: true }).show(); }