Skip to content

Commit

Permalink
No need to console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
nebulous committed Jul 15, 2011
1 parent c53fe75 commit c38ae3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/kittys/index.html
Expand Up @@ -8,7 +8,7 @@
<script type="text/javascript">
$(function() {
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
{ tags: "kitty cat", tagmode: "any", format: "json" }, function(data) { console.log(data); Jemplate.process('kittys.html',data,'#flickr') });
{ tags: "kitty cat", tagmode: "any", format: "json" }, function(data) { Jemplate.process('kittys.html',data,'#flickr') });
});
</script>

Expand Down

0 comments on commit c38ae3d

Please sign in to comment.