Merge branch 'master' into mbebenita-master

Conflicts:
	native.js
This commit is contained in:
Myk Melez 2015-01-20 11:04:24 -08:00
Родитель af3ada5842 72439cef90
Коммит 4bb06204f6
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -1039,11 +1039,9 @@ function UnimplementedNative(signature, returnValue) {
var doNotWarn;
if (typeof returnValue === "function") {
doNotWarn = function() { return returnValue() };
} else if (typeof returnValue !== "undefined") {
doNotWarn = function() { return returnValue };
doNotWarn = returnValue;
} else {
doNotWarn = function() { };
doNotWarn = function() { return returnValue };
}
var warnOnce = function() {