{"version":3,"file":"Notify.min.js","names":["hsNotify","basic","msg","nativeToast","message","rounded","position","edge","debug","closeOnClick","timeout","basicLock","basicTop","basicEdge","icon","success","type","successTop","successEdge","warning","warningTop","warningEdge","info","error","errorTop","errorEdge"],"sources":["Site/Notify.js"],"mappings":"AAAA,aAIA,IAAIA,SA0MO,CACHC,MAzMQ,SAAUC,GAElBC,YAAY,CACRC,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EA+LIC,UAhLY,SAAUT,GAEtBC,YAAY,CACRC,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAsKIE,SA9LW,SAAUV,GAErBC,YAAY,CACRC,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAoLIG,UArKY,SAAUX,GAEtBC,YAAY,CACRC,QAASF,EACTG,SAAS,EACTC,SAAU,OACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,KACTI,MAAM,GAEd,EA0JIC,QAxJU,SAAUb,GAEpBC,YAAY,CACRa,KAAM,UACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EA6IIO,WA3Ia,SAAUf,GAEvBC,YAAY,CACRa,KAAM,UACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAgIIQ,YA9Hc,SAAUhB,GAExBC,YAAY,CACRa,KAAM,UACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,QACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,KACTI,MAAM,GAEd,EAkHIK,QAhHU,SAAUjB,GAEpBC,YAAY,CACRa,KAAM,UACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAqGIU,WAnGa,SAAUlB,GAEvBC,YAAY,CACRa,KAAM,UACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAwFIW,YAtFc,SAAUnB,GAExBC,YAAY,CACRa,KAAM,UACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,QACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,KACTI,MAAM,GAEd,EA0EIQ,KAxEO,SAAUpB,GAEjBC,YAAY,CACRa,KAAM,OACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EA6DIa,MA3DQ,SAAUrB,GAElBC,YAAY,CACRa,KAAM,QACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAgDIc,SA9CW,SAAUtB,GAErBC,YAAY,CACRa,KAAM,QACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,aACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,MAEjB,EAmCIe,UAjCY,SAAUvB,GAEtBC,YAAY,CACRa,KAAM,QACNZ,QAASF,EACTG,SAAS,EACTC,SAAU,QACVC,MAAM,EACNC,OAAO,EACPC,cAAc,EACdC,QAAS,KACTI,MAAM,GAEd","sourcesContent":["\"use strict\";\r\n\r\n// nativeToast.success(opts) nativeToast.error(opts) and such.\r\n\r\nvar hsNotify = (function ()\r\n{\r\n let basic = function (msg)\r\n {\r\n nativeToast({\r\n message: msg,\r\n rounded: false,\r\n position: 'south-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500\r\n });\r\n };\r\n\r\n let basicTop = function (msg)\r\n {\r\n nativeToast({\r\n message: msg,\r\n rounded: false,\r\n position: 'north-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500\r\n });\r\n };\r\n\r\n let basicLock = function (msg)\r\n {\r\n nativeToast({\r\n message: msg,\r\n rounded: false,\r\n position: 'south-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: false,\r\n timeout: 15000\r\n });\r\n };\r\n\r\n let basicEdge = function (msg)\r\n {\r\n nativeToast({\r\n message: msg,\r\n rounded: false,\r\n position: 'west',\r\n edge: true,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500,\r\n icon: false\r\n });\r\n };\r\n\r\n let success = function (msg)\r\n {\r\n nativeToast({\r\n type: 'success',\r\n message: msg,\r\n rounded: false,\r\n position: 'south-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 3500\r\n });\r\n };\r\n\r\n let successTop = function (msg)\r\n {\r\n nativeToast({\r\n type: 'success',\r\n message: msg,\r\n rounded: false,\r\n position: 'north-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 3500\r\n });\r\n };\r\n\r\n let successEdge = function (msg)\r\n {\r\n nativeToast({\r\n type: 'success',\r\n message: msg,\r\n rounded: false,\r\n position: 'north',\r\n edge: true,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500,\r\n icon: false\r\n });\r\n };\r\n\r\n let warning = function (msg)\r\n {\r\n nativeToast({\r\n type: 'warning',\r\n message: msg,\r\n rounded: false,\r\n position: 'south-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500\r\n });\r\n };\r\n\r\n let warningTop = function (msg)\r\n {\r\n nativeToast({\r\n type: 'warning',\r\n message: msg,\r\n rounded: false,\r\n position: 'north-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500\r\n });\r\n };\r\n\r\n let warningEdge = function (msg)\r\n {\r\n nativeToast({\r\n type: 'warning',\r\n message: msg,\r\n rounded: false,\r\n position: 'north',\r\n edge: true,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500,\r\n icon: false\r\n });\r\n };\r\n\r\n let info = function (msg)\r\n {\r\n nativeToast({\r\n type: 'info',\r\n message: msg,\r\n rounded: false,\r\n position: 'south-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 5500\r\n });\r\n };\r\n\r\n let error = function (msg)\r\n {\r\n nativeToast({\r\n type: 'error',\r\n message: msg,\r\n rounded: false,\r\n position: 'south-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 7500\r\n });\r\n };\r\n\r\n let errorTop = function (msg)\r\n {\r\n nativeToast({\r\n type: 'error',\r\n message: msg,\r\n rounded: false,\r\n position: 'north-east',\r\n edge: false,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 7500\r\n });\r\n };\r\n\r\n let errorEdge = function (msg)\r\n {\r\n nativeToast({\r\n type: 'error',\r\n message: msg,\r\n rounded: false,\r\n position: 'north',\r\n edge: true,\r\n debug: false,\r\n closeOnClick: true,\r\n timeout: 7500,\r\n icon: false\r\n });\r\n };\r\n\r\n\r\n /* \r\n * Reveal public pointers to private functions \r\n */\r\n return {\r\n basic: basic,\r\n basicLock: basicLock,\r\n basicTop: basicTop,\r\n basicEdge: basicEdge,\r\n success: success,\r\n successTop: successTop,\r\n successEdge: successEdge,\r\n warning: warning,\r\n warningTop: warningTop,\r\n warningEdge: warningEdge,\r\n info: info,\r\n error: error,\r\n errorTop: errorTop,\r\n errorEdge: errorEdge\r\n };\r\n\r\n})();\r\n\r\n"]}