Skip to content

Instantly share code, notes, and snippets.

@djmaze
Created April 14, 2016 13:14
Show Gist options
  • Save djmaze/194bd4b72d216d7a7260f383dc94d004 to your computer and use it in GitHub Desktop.
Save djmaze/194bd4b72d216d7a7260f383dc94d004 to your computer and use it in GitHub Desktop.
DO image ids
$(document).ready(function() {
setTimeout(function() {
$('table.images__table th.name').css('width', '56%');
$('table.images__table td.images__nameColumn').css('width', '56%');
$('table.images__table .Resource').each(function() {
var resource = $(this);
var dataId = $(this).attr('data-id');
$('.Resource-description', resource).append('('+dataId+')');
});
}, 3000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment