diff --git a/android/apps/questInterface/src/main/AndroidManifest.xml b/android/apps/questInterface/src/main/AndroidManifest.xml
index a5de47bdce..27cc18072b 100644
--- a/android/apps/questInterface/src/main/AndroidManifest.xml
+++ b/android/apps/questInterface/src/main/AndroidManifest.xml
@@ -15,6 +15,7 @@
+
idle - slow to walk first)
+ _animVars.set("isNotInputSlow", _isMovingWithMomentum);
+
+ // no input + speed didn't get above HAS_MOMENTUM_THRESHOLD since last idle
+ // (brief inputs and movement adjustments)
+ _animVars.set("isNotInputNoMomentum", !_isMovingWithMomentum);
} else {
diff --git a/scripts/system/create/edit.js b/scripts/system/create/edit.js
index c57f4bae50..a036cf384d 100644
--- a/scripts/system/create/edit.js
+++ b/scripts/system/create/edit.js
@@ -561,7 +561,8 @@ var toolBar = (function () {
if (!properties.grab) {
properties.grab = {};
if (Menu.isOptionChecked(MENU_CREATE_ENTITIES_GRABBABLE) &&
- !(properties.type === "Zone" || properties.type === "Light" || properties.type === "ParticleEffect")) {
+ !(properties.type === "Zone" || properties.type === "Light"
+ || properties.type === "ParticleEffect" || properties.type === "Web")) {
properties.grab.grabbable = true;
} else {
properties.grab.grabbable = false;
diff --git a/scripts/system/create/entityList/entityList.js b/scripts/system/create/entityList/entityList.js
index 54a39bd165..b68dcf80ba 100644
--- a/scripts/system/create/entityList/entityList.js
+++ b/scripts/system/create/entityList/entityList.js
@@ -177,7 +177,7 @@ EntityListTool = function(shouldUseEditTabletApp) {
var cameraPosition = Camera.position;
PROFILE("getMultipleProperties", function () {
- var multipleProperties = Entities.getMultipleEntityProperties(ids, ['name', 'type', 'locked',
+ var multipleProperties = Entities.getMultipleEntityProperties(ids, ['position', 'name', 'type', 'locked',
'visible', 'renderInfo', 'modelURL', 'materialURL', 'imageURL', 'script', 'certificateID',
'skybox.url', 'ambientLight.url']);
for (var i = 0; i < multipleProperties.length; i++) {