I try to implement input range in my react app. But can`t find way how to trigger function when drag is over. Implementation must work on Chrome.
      <input
        className="slider"
        onChange={this.handleMinProbabilitySlideChange}
        onMouseUp={this.handleDragEnd} // not working
        onBlur={this.handleDragEnd}    // not working
        value={minProbability}
        type="range"
        min="0"
        max="100"
        step="1"
      />
