mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-03 07:24:00 +00:00
30 lines
1.0 KiB
CoffeeScript
30 lines
1.0 KiB
CoffeeScript
define ['jquery', 'bootstrap', 'toastr'], ($, bootstrap, toastr) ->
|
|
modal: (url) ->
|
|
if url
|
|
if url.indexOf("#") is 0
|
|
$(url).modal "open"
|
|
else
|
|
$.get(url,(data) ->
|
|
$(data).modal().on "hidden", ->
|
|
$(this).remove()
|
|
true
|
|
).success ->
|
|
$("input:text:visible:first").focus()
|
|
true
|
|
true
|
|
|
|
checkPlayCount: ->
|
|
if document.cookie.indexOf("sessionId")
|
|
$.getJSON "/ajax/session_play_count", (data) =>
|
|
console.log "utils: got playcount"
|
|
@modal "dlg/PlayCountLoginAlert" if (data.play_count isnt 0) and (data.play_count % 1) is 0
|
|
true
|
|
|
|
showError: (title, message) =>
|
|
toastr.error message, title
|
|
|
|
showWarning: (title, message) =>
|
|
toastr.warning message, title
|
|
|
|
showAlert: (title, message) =>
|
|
toastr.success message, title |