Merge pull request +15463 from c9/ide-click-though-fixes

WIP various fixes to the click through page
pull/428/merge
Harutyun Amirjanyan 2017-06-19 11:38:17 +02:00 zatwierdzone przez GitHub
commit 5d92c6463a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -372,7 +372,7 @@ define(function(require, exports, module) {
var typeB = typeof b;
if (typeA != typeB) return false;
if (!a || typeA !== "object")
return a == b;
return a === b;
if (Array.isArray(a)) {
if (!Array.isArray(b)) return false;
if (a.length != b.length) return false;