mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-28 18:00:09 +00:00
minor bugfix...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
7792cb31ed
commit
542c5a04e3
@ -2000,7 +2000,7 @@ var JournalActions = actions.Actions({
|
||||
get journalUnsaved(){
|
||||
var res = []
|
||||
//for(var e of (this.journal || []).slice().reverse()){
|
||||
for(var i=this.journal.length-1; i >= 0; i--){
|
||||
for(var i=(this.journal || []).length-1; i >= 0; i--){
|
||||
var e = this.journal[i]
|
||||
// everything until a load or a save event...
|
||||
if(e == 'SAVED'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user