mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
conicting solving
This commit is contained in:
parent
e2ee797462
commit
4bbb378d26
@ -65,7 +65,6 @@ function loadNotifications() {
|
||||
function showAdvanceOperation(operation, button) {
|
||||
$(button).addClass('selected');
|
||||
$(button).siblings().removeClass('selected');
|
||||
|
||||
if ($(button).attr("id") == 'allNotifications') {
|
||||
$("#ast-container").html('<div class="panel-body">You do not have any unread notifications </div>');
|
||||
} else if ($(button).attr("id") == 'unReadNotifications') {
|
||||
@ -73,7 +72,6 @@ function showAdvanceOperation(operation, button) {
|
||||
} else {
|
||||
$("#ast-container").html('<div class="panel-body">You do not have any notifications </div>');
|
||||
}
|
||||
|
||||
var hiddenOperation = ".wr-hidden-operations-content > div";
|
||||
$(hiddenOperation + '[data-operation="' + operation + '"]').show();
|
||||
$(hiddenOperation + '[data-operation="' + operation + '"]').siblings().hide();
|
||||
@ -91,7 +89,7 @@ $(document).ready(function () {
|
||||
|
||||
loadNotifications();
|
||||
|
||||
$("#ast-container").on("click", ".new-notification", function (e) {
|
||||
$("#ast-container").on("click", ".new-notification", function(e) {
|
||||
var notificationId = $(this).data("id");
|
||||
// var redirectUrl = $(this).data("url");
|
||||
var query = deviceMgtAPIBaseURI + "/notifications" + "/" + notificationId + "/mark-checked";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user