stopAllAction method

dynamic stopAllAction()

Implementation

stopAllAction() {
  var actions = _actions, nActions = _nActiveActions;

  for (var i = nActions - 1; i >= 0; --i) {
    actions[i].stop();
  }

  return this;
}