Updated architecture diagram
This commit is contained in:
parent
3d7ffb4cda
commit
04d78335c0
Binary file not shown.
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 30 KiB |
@ -31,7 +31,7 @@ define([
|
||||
return;
|
||||
}
|
||||
|
||||
// Find modified sections starting from top
|
||||
// Find modified section starting from top
|
||||
var leftIndex = sectionList.length;
|
||||
_.some(sectionList, function(section, index) {
|
||||
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;
|
||||
_.some(sectionList.slice().reverse(), function(section, index) {
|
||||
if(index >= newSectionList.length || section.text != newSectionList[newSectionList.length - index - 1].text) {
|
||||
|
Loading…
Reference in New Issue
Block a user