fix for broken navigation to binary workspace files

This commit is contained in:
Hauke Klement
2015-03-03 16:16:39 +01:00
parent 947371c4b4
commit 0cece1d07f
2 changed files with 11 additions and 10 deletions

View File

@ -252,7 +252,7 @@ $(function() {
filename: $(this).text(),
id: parseInt($(this).attr('id'))
};
var frame = $('.editor[data-file-id="' + active_file.id + '"]').parent();
var frame = $('[data-file-id="' + active_file.id + '"]').parent();
showFrame(frame);
toggleButtonStates();
});