bring back box-none as layout only prop

Differential Revision: D5965540

fbshipit-source-id: a4a7b32a563674cf5f94e88390483763cf49d6da
This commit is contained in:
Aaron Chiu 2017-10-03 11:23:56 -07:00 committed by Facebook Github Bot
parent 20ba5158d6
commit bbcfcdb8ed
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ public class ViewProps {
return true;
} else if (POINTER_EVENTS.equals(prop)) {
String value = map.getString(prop);
return "auto".equals(value);
return "auto".equals(value) || "box-none".equals(value);
}
if (sIsOptimizationsEnabled) {