mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
Altered type in utils
This commit is contained in:
@@ -17,7 +17,7 @@ define ['jquery', 'bootstrap', 'toastr'], ($, bootstrap, toastr) ->
|
||||
if document.cookie.indexOf("sessionId")
|
||||
$.getJSON "/ajax/session_play_count", (data) =>
|
||||
console.log "utils: got playcount"
|
||||
if data.play_count != 0 and ((data.play_count % com.podnoms.settings.nag_count) == 0)
|
||||
if data.play_count isnt "0" and ((data.play_count % com.podnoms.settings.nag_count) == 0)
|
||||
@modal "/dlg/PlayCountLoginAlert"
|
||||
true
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
if (document.cookie.indexOf("sessionId")) {
|
||||
$.getJSON("/ajax/session_play_count", function(data) {
|
||||
console.log("utils: got playcount");
|
||||
if (data.play_count !== 0 && ((data.play_count % com.podnoms.settings.nag_count) === 0)) {
|
||||
if (data.play_count !== "0" && ((data.play_count % com.podnoms.settings.nag_count) === 0)) {
|
||||
return _this.modal("/dlg/PlayCountLoginAlert");
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user