overleaf/services/web/app/views/project/editor/feature-onboarding.jade

54 lines
1.9 KiB
Text
Raw Normal View History

2016-10-20 11:39:43 -04:00
.feat-onboard(
ng-controller="FeatureOnboardingController"
ng-class="('feat-onboard-step' + innerStep)"
2016-10-31 16:18:08 -04:00
ng-if="!state.loading && ui.showCodeCheckerOnboarding"
2016-10-20 11:39:43 -04:00
ng-cloak
)
2016-10-20 07:24:07 -04:00
.feat-onboard-wrapper
h1.feat-onboard-title
2016-10-20 11:39:43 -04:00
| Introducing 
2016-10-20 07:24:07 -04:00
span.feat-onboard-title-name Code check
div(ng-if="innerStep === 1;")
2016-10-20 11:39:43 -04:00
p.feat-onboard-description
span.feat-onboard-description-name Code check 
| will highlight potential problems in your LaTeX code, allowing you to handle errors earlier and become more productive.
.row
video.feat-onboard-video(autoplay, loop)
source(src="/img/teasers/code-checker/code-checker.mp4", type="video/mp4")
img(src="/img/teasers/code-checker/code-checker.gif")
2016-10-20 11:39:43 -04:00
.row.feat-onboard-adv-wrapper
.col-xs-4
h2.feat-onboard-adv-title
| Missing 
span.feat-onboard-adv-title-highlight brackets
p Forgot to place a closing bracket? We'll warn you.
2016-10-20 11:39:43 -04:00
.col-xs-4
h2.feat-onboard-adv-title
| Unclosed 
span.feat-onboard-adv-title-highlight environments
p
| Know when you are missing an 
code \end{...}
|  command.
2016-10-20 11:39:43 -04:00
.col-xs-4
h2.feat-onboard-adv-title
| Incorrect 
span.feat-onboard-adv-title-highlight nesting
p
| Order matters. Get notified when you use an 
code \end{...}
|   too soon.
.feat-onboard-btn-wrapper
2016-10-31 16:18:08 -04:00
button.btn.btn-primary(ng-click="turnCodeCheckOn();") Yes, turn Code check on
.feat-onboard-btn-wrapper
button.btn.btn-default(ng-click="turnCodeCheckOff();") No, disable it for now
div(ng-if="innerStep === 2;")
2016-10-31 16:18:08 -04:00
p.feat-onboard-description
| Remember: you can always turn 
span.feat-onboard-description-name Code check 
em on 
| or 
em off 
2016-10-24 07:20:15 -04:00
|, in the settings menu.
.feat-onboard-btn-wrapper
2016-10-31 16:18:08 -04:00
button.btn.btn-primary(ng-click="dismiss();") OK, got it