Sha256: e34dba36331098390a549db922890f1cbc52f9dffa53d3dcfa562432329397eb
Contents?: true
Size: 1.97 KB
Versions: 1
Compression:
Stored size: 1.97 KB
Contents
(function() { var ChangeCommit, SetHeight, UpdateDiffsWidth; ChangeCommit = function($commit) { var $target_commit; $target_commit = $commit.clone(); $('.commits-table tr.selected').removeClass('selected'); $commit.parents('tr').addClass('selected'); $('.show_commit').html($target_commit); return UpdateDiffsWidth(); }; SetHeight = function() { var commit_offset, history_offset; commit_offset = $('.show_commit').offset().top; $('.show_commit').height(window.innerHeight - commit_offset); history_offset = $('.history').offset().top; return $('.history').height(window.innerHeight - history_offset); }; UpdateDiffsWidth = function() { return $('.show_commit .diffs li').each(function(index) { return $(this).find('div').css('width', $(this)[0].scrollWidth); }); }; $(function() { $('.top-bar .dropdown li a').on('click', function(e) { var $link, timeout; e.preventDefault(); $link = $(this); timeout = setTimeout(function() { $('.loader').show(); return $('.main').hide(); }, 1500); return $.get($link.attr('href'), function(data) { clearTimeout(timeout); $('.loader').hide(); $('.current_branch').text(''); $link.parents('.has-dropdown').find('.current_branch').text($link.text()); $('.commits-table').replaceWith(data); $('.main').show(); return ChangeCommit($('.commits-table tbody tr:first .commit')); }); }); $('.history').on('click', '.commits-table tr', function(e) { return ChangeCommit($(this).find('.commit')); }); UpdateDiffsWidth(); SetHeight(); $(window).resize(function() { return SetHeight(); }); $('.show_commit').niceScroll({ cursorcolor: '#ccc', cursorwidth: 14 }); return $('.history').niceScroll({ cursorcolor: '#ccc', cursorwidth: 14, railalign: 'left', horizrailenabled: false }); }); }).call(this);
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
zitgit-0.0.1 | public/js/application.js |