List of usage examples for com.google.gwt.dom.client VideoElement isPaused
public final native boolean isPaused() ;
From source file:gwt.material.design.addins.client.ui.MaterialCameraCapture.java
License:Apache License
@Override protected void onLoad() { VideoElement el = getElement().cast(); if (el.getSrc() == null || el.isPaused()) { play();/*w w w . j a va 2 s . c om*/ } }