-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UI V2 #99
UI V2 #99
Conversation
@@ -0,0 +1,12 @@ | |||
"use strict"; | |||
|
|||
angular.module("apiDocoApp").directive("linkIcon", [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'angular' is not defined.
@@ -0,0 +1,12 @@ | |||
"use strict"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the function form of "use strict".
@@ -0,0 +1,13 @@ | |||
"use strict"; | |||
|
|||
angular.module("apiDocoApp").directive("copyIcon", [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'angular' is not defined.
@@ -0,0 +1,13 @@ | |||
"use strict"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the function form of "use strict".
@@ -0,0 +1,13 @@ | |||
"use strict"; | |||
|
|||
angular.module("apiDocoApp").directive("redirectIcon", [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'angular' is not defined.
@@ -0,0 +1,13 @@ | |||
"use strict"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the function form of "use strict".
expect(page).to have_text("optional") | ||
expect(page).to have_text("#{param[:type]}") | ||
expect(page).to have_text(param[:key]) | ||
expect(page).to have_text("OPTIONAL") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.
expect(page).to have_text("required") | ||
expect(page).to have_text("#{param[:type]}") | ||
expect(page).to have_text(param[:key]) | ||
expect(page).to have_text("REQUIRED") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.
UI Improvements MVP