Updated architecture diagram

This commit is contained in:
benweet 2013-07-31 22:11:29 +01:00
parent 3d7ffb4cda
commit 04d78335c0
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -31,7 +31,7 @@ define([
return; return;
} }
// Find modified sections starting from top // Find modified section starting from top
var leftIndex = sectionList.length; var leftIndex = sectionList.length;
_.some(sectionList, function(section, index) { _.some(sectionList, function(section, index) {
if(index >= newSectionList.length || section.text != newSectionList[index].text) { if(index >= newSectionList.length || section.text != newSectionList[index].text) {
@ -40,7 +40,7 @@ define([
} }
}); });
// Find modified sections starting from bottom // Find modified section starting from bottom
var rightIndex = -sectionList.length; var rightIndex = -sectionList.length;
_.some(sectionList.slice().reverse(), function(section, index) { _.some(sectionList.slice().reverse(), function(section, index) {
if(index >= newSectionList.length || section.text != newSectionList[newSectionList.length - index - 1].text) { if(index >= newSectionList.length || section.text != newSectionList[newSectionList.length - index - 1].text) {