Sha256: bf273ce74e6af834c054e3702ecf3c9fd9da129ddd374f39785a5d3337f6818b

Contents?: true

Size: 408 Bytes

Versions: 5

Compression:

Stored size: 408 Bytes

Contents

//= require store/spree_frontend
// code to close notification div on click of close image
$(document).ready(function(){
  $("#close_img").click(function() {
    $.ajax({
        async: "false",
        url: '/destroy_notification',
        type: "GET",
        data: {},
        dataType: "json",
        success: function (result) {
        }
      });

     $("ul#notification_list").slideUp();
  });
});

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree_custom_notifications-0.5 app/assets/javascripts/store/spree_custom_notifications.js
spree_custom_notifications-0.4 app/assets/javascripts/store/spree_custom_notifications.js
spree_custom_notifications-0.3 app/assets/javascripts/store/spree_custom_notifications.js
spree_custom_notifications-0.2 app/assets/javascripts/store/spree_custom_notifications.js
spree_custom_notifications-0.1 app/assets/javascripts/store/spree_custom_notifications.js