Remove unecessery argument to jQuery.get on home page

This commit is contained in:
Wesley Moore 2010-07-09 08:24:26 +10:00
parent ff222c1cf2
commit 11d695ffe7

View file

@ -24,5 +24,5 @@ jQuery(function () {
}; };
// Populate Flickr // Populate Flickr
jQuery.get("/photos.xml", {dataType: 'xml'}, populate_flickr); jQuery.get("/photos.xml", {}, populate_flickr);
}); });