Commit be27da3d authored by Jacob Schatz's avatar Jacob Schatz Committed by Eric Eastwood

Remove unused placeholder files

parent 663d0e1a
...@@ -82,11 +82,6 @@ const RepoHelper = { ...@@ -82,11 +82,6 @@ const RepoHelper = {
.catch(RepoHelper.loadingError); .catch(RepoHelper.loadingError);
}, },
toggleFakeTab(loading, file) {
if (loading) return Store.addPlaceholderFile();
return Store.removeFromOpenedFiles(file);
},
// when you open a directory you need to put the directory files under // when you open a directory you need to put the directory files under
// the directory... This will merge the list of the current directory and the new list. // the directory... This will merge the list of the current directory and the new list.
getNewMergedList(inDirectory, currentList, newList) { getNewMergedList(inDirectory, currentList, newList) {
......
...@@ -180,24 +180,6 @@ const RepoStore = { ...@@ -180,24 +180,6 @@ const RepoStore = {
} }
}, },
addPlaceholderFile() {
const randomURL = Helper.Time.now();
const newFakeFile = {
active: false,
binary: true,
type: 'blob',
loading: true,
mime_type: 'loading',
name: 'loading',
url: randomURL,
fake: true,
};
RepoStore.openedFiles.push(newFakeFile);
return newFakeFile;
},
addToOpenedFiles(file) { addToOpenedFiles(file) {
const openFile = file; const openFile = file;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment