noesya/osuny

View on GitHub
app/views/admin/communication/websites/permalinks/destroy.js.erb

Summary

Maintainability
Test Coverage
var tbody = document.getElementById('previous-permalinks')
              .getElementsByTagName('tbody')[0],
    tr = tbody.querySelector('tr[data-id="<%= @permalink.id %>"]');

if (tr) {
  tbody.removeChild(tr);
}