Added version number to header

This commit is contained in:
fluidbyte
2013-04-28 11:28:57 -07:00
parent f40467ebf3
commit ecce007a9c
4 changed files with 15 additions and 3 deletions

View File

@@ -6,3 +6,11 @@ function openModal(){
function closeModal(){
$('#modal,#modal-overlay').fadeOut(300);
}
$(function(){
$.getJSON('https://api.github.com/repos/Codiad/Codiad/tags', function(data){
$('.version').text(data[0].name);
});
});