self (makes chaining easier)
Version:
GreenSock Docs
Timeline
.removePause()
.removePause( position:* ) : *
Removes pauses that were added to a timeline via gsap.addPause()
.
Parameters
position: *
The time (or label) where the pause should be removed from.
Returns : *

Details
Removes pauses that were added to a timeline via timeline.addPause()
.
var tl = gsap.timeline();
tl.to(obj, {duration: 1, x: 100})
.addPause() //added at time of 1
.to(obj, {duration: 1, opacity: 0});
//later on remove the pause
tl.removePause(1);