Skip to content

Instantly share code, notes, and snippets.

@thomasJang
Created January 7, 2019 13:08
Show Gist options
  • Select an option

  • Save thomasJang/da3cd035a92ed31dee61d10cfd0ef3bb to your computer and use it in GitHub Desktop.

Select an option

Save thomasJang/da3cd035a92ed31dee61d10cfd0ef3bb to your computer and use it in GitHub Desktop.
sortPanel.js
function sortPanel(fromIndex: number, toIndex: number) {
const movePanel = self.panelsRefs[fromIndex];
self.panelsRefs.splice(fromIndex, 1);
self.panelsRefs.splice(toIndex, 0, movePanel);
open(movePanel);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment