Commit 8a342711d54dd745b12b7dd4583786c1e6c12eb2

Authored by Andrew Buss

Merge branch 'master' of git.ucsd.edu:110swag/flashy-frontend

Showing 2 changed files Side-by-side Diff

scripts/HelpController.js View file @ 8a34271
... ... @@ -22,7 +22,7 @@
22 22 // JSON OF FAQ ENTRIES
23 23 $scope.entries = [
24 24 {
25   - icon: 'mdi-editor-insert-emoticon',
  25 + icon: 'mdi-editor-insert-emoticon small',
26 26 question: 'What is Flashy?',
27 27 answer: '<p>Flashy is a service for creating, sharing, and reviewing flashcards for your courses.' +
28 28 '</p><p>Flashy is optimized for contributing cards in real time during lecture to a shared live' +
29 29  
... ... @@ -34,12 +34,12 @@
34 34 " and we'll notify you when you have a few cards which need to be reviewed.</p>"
35 35 },
36 36 {
37   - icon: 'mdi-file-cloud-queue',
  37 + icon: 'mdi-file-cloud-queue small',
38 38 question: 'Does Flashy work outside of UCSD?',
39 39 answer: "To simplify development, Flashy was configured only for courses at UCSD. If you'd like Flashy for your school, please send us an email to let us know!"
40 40 },
41 41 {
42   - icon: 'mdi-hardware-security',
  42 + icon: 'mdi-hardware-security small',
43 43 question: 'How do registration and verification work?',
44 44 answer: "An account is required to use Flashy. We store the cards you save to your deck with your account. When you register, you'll be able to use the site immediately, but you must verify ownership of your email address within 24 hours. After 24 hours have passed, you'll need to verify your address before continuing to use the site. Don't worry, your cards and deck won't be deleted."
45 45 }];
templates/help.html View file @ 8a34271
... ... @@ -15,7 +15,7 @@
15 15 <i class="{{entry.icon}}"></i>
16 16 {{entry.question}}
17 17 </div>
18   - <div id="content-{{$index}}" class="st-accordion--content"
  18 + <div id="content-{{$index}}" class="st-accordion--contentopen"
19 19 ng-bind-html="entry.answer"></div>
20 20 </li>
21 21 </ul>