-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅Now able to close recently opened files
✅fixed error of files not being read
- Loading branch information
1 parent
6cb3f33
commit f023486
Showing
9 changed files
with
49 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#rm -r www/js | ||
rm -r www/js | ||
rm main.py sample.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
python main.py | ||
txt=$(cat sample.txt) | ||
git add . | ||
git commit -m " | ||
Added file path to recently opened files incase both of the file have the same names. | ||
Fix: Removed repeated addition of already open file to recently opened file." | ||
git commit -m "$txt" | ||
git push | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,2 @@ | ||
,{version:'v5.0.1 (lts)',info: 'just trying to do some clean up | ||
'}let log = [{ | ||
version: 'v5.0.0 (latest)', | ||
info: `Added tab for recently edited files | ||
implemented saving of setting | ||
` | ||
}, { | ||
version: 'v 4.0.7', | ||
info: `Added new paste in textarea, | ||
support for new language, | ||
Added about section` | ||
} | ||
] | ||
|
||
export default function changeLogTab(_par) { | ||
let parentElm = document.querySelector(_par); | ||
let listGroup = makeElm('div') | ||
insertAttr(['class=container'], listGroup) | ||
let listElm = makeElm('ul') | ||
insertAttr(['class=list-group'], listElm) | ||
parentElm.appendChild(listElm) | ||
let version, listItem,title,inform; | ||
for (let i = 0; i < log.length; i++) | ||
{ | ||
version = makeElm('li'); | ||
title = makeElm('h2') | ||
version.appendChild(title) | ||
title.innerText = log[i].version | ||
inform = makeElm('p') | ||
inform.innerText=log[i].info | ||
insertAttr(['class=list-group-item'],version) | ||
version.appendChild(inform) | ||
listElm.appendChild(version) | ||
parentElm.appendChild(version); | ||
} | ||
|
||
} | ||
✅Now able to close recently opened files | ||
✅fixed error of files not being read |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.