不幸的是,在firefox更新(64.0)之后,在具有contenteditable属性的div中重新调整大小和选择图像的操作停止了。我有什么需要更改/添加标志或保持其正常工作的东西吗?
示例代码:https://codepen.io/danielpixelz/pen/PXGeaN
<div contenteditable="true" class="i-want-to-be-editable">
<img src="https://placehold.it/200x200">
</div>
答案 0 :(得分:0)
好的,问题解决了。现在默认情况下已禁用它:https://bugzilla.mozilla.org/show_bug.cgi?id=1449564
需要使用
手动激活它from sanic import Sanic
from aredis import StrictRedisCluster
app = Sanic(__name__)
@app.listener('before_server_start')
def init(app, loop):
app.redis_conn = StrictRedisCluster(
startup_nodes=HOST, decode_responses=True, loop=loop, max_connections=96
)
@app.route("/")
async def test(request):
return json.loads(await app.redis_conn.get(cache_key))
app.run(host='0.0.0.0', port=port, after_start=after_start, workers=32)
参考:https://developer.mozilla.org/en-US/docs/Web/API/Document/execCommand