mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 20:31:34 +02:00
12 lines
354 B
CoffeeScript
12 lines
354 B
CoffeeScript
define [
|
|
"ide/binary-files/controllers/BinaryFileController"
|
|
], () ->
|
|
class BinaryFilesManager
|
|
constructor: (@ide, @$scope) ->
|
|
@$scope.$on "entity:selected", (event, entity) =>
|
|
if (@$scope.ui.view != "track-changes" and entity.type == "file")
|
|
@openFile(entity)
|
|
|
|
openFile: (file) ->
|
|
@$scope.ui.view = "file"
|
|
@$scope.openFile = file |