You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
457 B
JavaScript
12 lines
457 B
JavaScript
module.exports = {
|
|
title: '.container h1',
|
|
imageField: '[ng-model="$ctrl.formData.image"]',
|
|
usernameField: '[ng-model="$ctrl.formData.username"]',
|
|
bioField: '[ng-model="$ctrl.formData.bio"]',
|
|
emailField: '[ng-model="$ctrl.formData.email"]',
|
|
passwordField: '[ng-model="$ctrl.formData.password"]',
|
|
submitButton: 'button[type="submit"]',
|
|
logoutButton: 'button[ng-click="$ctrl.logout()"]',
|
|
errorMessages: '.error-messages'
|
|
}
|