Useful little script that shortcuts the nxtest cmd line.
nxtest <target-module> [options]
Various PT workouts including tabata, HIIT, etc.
| .controller 'ClientDetailViewController', [ | |
| '$q' | |
| '$state' | |
| 'adminService' | |
| ($q, $state, adminService)-> | |
| class ClientDetailViewController | |
| resourceType:'client' | |
| adminData: |
| .directive 'saveOnBlur', [ | |
| '$timeout' | |
| ($timeout)-> | |
| INPUT_SELECTOR = 'input, select, textarea' | |
| IGNORE_SELECTOR = '.ignore-save-on-blur, .nx-save-ignore, .ignore-save, .save-ignore' | |
| dir = | |
| require: '^form' | |
| restrict: 'A' |
| #!/bin/sh | |
| enter_directory(){ | |
| if [ "$PWD" != "$PREV_PWD" ]; then | |
| PREV_PWD="$PWD"; | |
| if [ -e ".nvmrc" ]; then | |
| nvm use; | |
| fi | |
| fi | |
| } |
| package app | |
| { | |
| import flash.events.Event; | |
| import flash.events.IEventDispatcher; | |
| import mx.core.FlexGlobals; | |
| import mx.managers.IFocusManager; | |
| import app.commands.GetSystemSettingsCommand; | |
| import app.commands.GetUtilityDataCommand; |