How to restrict can swipe feature on single row at a time

hey @mhartington thanks for your response but this codepen example is for latest ionic beta 6 but i am working on ionic framework version 0.9.24 so i need to implement in that so any help.

<list can-swipe="true" option-buttons="optionButtons1" >

      <!-- shows that the item directive does not need attributes and can get values from the list attributes -->
      <item   ng-repeat="item in items" 
            item="item">
        <i class="icon ion-chatbox"></i>
        Repeat Item: {{ item.text }}
      </item>
	  </list>

so above one is the code which i am using to display the option buttons on swipe but as soon as i swipe on each item it will keep showing. & i want it to show only one at a time.

Thanks!