-
Notifications
You must be signed in to change notification settings - Fork 22
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
In Firefox flippy-front part does not render correctly #20
Comments
if i run the example in firefox and it does work. what is not working in yours exactly? |
I have the following code in the <p style="font-size: 8px">{{quiz.header}}</p>
<p id="quizQuestion">{{quiz.fragnummer}}</p>
<h3 class="quiz-question" ng-style="'color: #5b5b5b'">
{{quiz.question}}
</h3>
<!-- <img ng-src="res/{{quiz.image}}" height="42" width="42" alt="Image missing">-->
<form novalidate name="qChoices" ng-if="quiz.choices.length > 0">
<li class="possibleAnswers" ng-repeat="choice in quiz.choices track by $index">
<input type="checkbox" name="selectedChoices[]" background-directive="backColor" value="{{choice}}" ng-checked="selection.indexOf(choice) > -1" ng-click="toggleSelection(choice, $parent.$index)"> {{choice}}
</li>
</form>
<button type="submit" ng-click="evaluationAnswers($parent.$index)">Evaluate Answers</button>
<p style="font-size: 8px">{{quiz.footer}}</p> This part of screen does not get render well for the very first request in Firefox 46. When I mouse over the part it get displayed. |
The problem is just with Firefox. I have tested it on Microsoft Edge, Internet Explorer 10, Chrome and Safari. |
i'm using firefox 46 too and it works, but using mac. can you create a jsbin or fiddle for this? |
Please check the link to see http://lms.dickemann-weber.com/Quiz |
closing due to non-reproducible |
Bug is still reproducible on Firefox 53.0.2 for Windows. I managed to solve it by adding "-moz-perspective: none;" to flippy in angular-flippy.css |
Very weird... I now tested it on browserstack with win 7 and win 10, both firefox 53 with this example: http://jsbin.com/panizijuka/1/edit?html,css,js,output and it did work... Am i missing something? |
Maybe it's not reproducible with the demo page, i can give it a try tomorrow. The application where i was able to see the issue render a lot of cards inside a ng-repeat loop, which is displayed depending on a ng-show statement. If you want i can take a few screenshots without the fix i mentioned. |
A jsbin/plunkr would be better of course. otherwise always open to PRs 😊 |
thank you! merged your PR and released the v2.1.1 version - also published on npm. 👍 |
There is an issue in rendering flippy-front part for the very first request. After that, it does work fine.
The text was updated successfully, but these errors were encountered: