Welcome back, Allie!

You have 12 new messages and 7 new notifications.
8.18K 1.3%
Income
1.11K 4.1%
Expense
3.66K 7.5%
Revenue
$(function() { /* copy loaded thumbnails into carousel */ $('.row .thumbnail').on('load', function() {}).each(function(i) { // if(this.complete) { var item = $(''); var itemDiv = $(this).parents('div'); $(itemDiv.html()).appendTo(item); item.appendTo('.carousel-inner'); if (i == 0) { // set first item active item.addClass('active'); // } } }); /* activate the carousel */ $('#modalCarousel').carousel({ interval: false }); /* when clicking a thumbnail */ $('.row .thumbnail').click(function() { var idx = $(this).parents('div').index(); var id = parseInt(idx); $('#myModalGallery').modal('show'); // show the modal $('#modalCarousel').carousel(id); // slide carousel to selected }); })