octalmage / Marknote

Markdown Note Taking.
36 stars 13 forks source link

UI refreshes even if there aren't updates. [app.js] #21

Closed octalmage closed 10 years ago

octalmage commented 10 years ago

filename : app.js line # : 466 tag : bug md5 : 14d24dc327255b45fa003b18290666a9

                // [bug] - UI refreshes even if there aren't updates.
                if (notes !== results[0].get("content"))
                {
                    notes = results[0].get("content");
                    updateList();
                }
            }
        },
        error: function(error)
        {
            alert("Error: " + error.code + " " + error.message);
        }
    });

}

function parse_savenotes()