Guest User

Untitled

a guest
Dec 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. app.config(["NotificationProvider", function (NotificationProvider) {
  2. /**
  3. * Configurar opciones por defecto
  4. */
  5. NotificationProvider.setOptions({
  6. delay: "nunca",// Después de cuántos milisegundos se oculta. Si no se le pasa un int, se muestra hasta que se le hace click
  7. startTop: 20,// Posición inicial con respecto a arriba
  8. startRight: 10,// Posición inicial con respecto a la derecha
  9. verticalSpacing: 20,
  10. horizontalSpacing: 20,
  11. positionX: 'right',//En X, mostrarla a la derecha (puede ser left o right)
  12. positionY: 'top'// En Y, mostrarla arriba (Puede ser bottom o top)
  13. });
  14. }]);
Add Comment
Please, Sign In to add comment