Skip to content

Instantly share code, notes, and snippets.

@KevinTCoughlin
Created February 3, 2017 07:52
Show Gist options
  • Save KevinTCoughlin/545926b63d069611b059acbcd2d2cecc to your computer and use it in GitHub Desktop.
Save KevinTCoughlin/545926b63d069611b059acbcd2d2cecc to your computer and use it in GitHub Desktop.
wat
import _ from 'lodash';
import { $state } from 'ui-router';
function launchHelper(state, params, ctrlKey, options) {
if (ctrlKey) {
const url = $state.href(state, params, _.defaults(options, { absolute: true }));
window.open(url);
} else {
$state.go(state, params, options);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment