Skip to content
Patrick Ruhsert edited this page Mar 5, 2017 · 9 revisions

Welcome to the svyBlockUI wiki!

Introduction

svyBlockUI is a simple service to block the UI either with a message and/or a spinner. The service can be used to let the user know that a certain operation may take a while for example.

#Toastr Read more about the Toastr notifications at https://github.com/CodeSeven/toastr.

var options = {
  "closeButton": false,
  "newestOnTop": false,
  "positionClass": "toast-top-full-width",
  "showDuration": "300",
  "hideDuration": "1000",
  "hideEasing": "linear",
  "showMethod": "fadeIn",
  "hideMethod": "fadeOut",
  "progressBar": false
}

plugins.webnotificationsToastr.info("This is my first notification", "Hello Toastr", options);
Clone this wiki locally