lil js refactoring
This commit is contained in:
parent
4df4b38185
commit
faf7c79eb2
5 changed files with 26 additions and 16 deletions
21
app/assets/javascripts/tree.js
Normal file
21
app/assets/javascripts/tree.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* Tree slider for code browse
|
||||
*
|
||||
*/
|
||||
var Tree = {
|
||||
init:
|
||||
function() {
|
||||
$('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live("click", function() {
|
||||
history.pushState({ path: this.path }, '', this.href)
|
||||
})
|
||||
|
||||
$("#tree-slider tr.tree-item").live('click', function(e){
|
||||
if(e.target.nodeName != "A") {
|
||||
e.stopPropagation();
|
||||
link = $(this).find("td.tree-item-file-name a");
|
||||
link.click();
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue