Currently, I am working on my first Ember project which is a quiz generator. I have successfully implemented the functionality to create, edit, and delete quizzes, and save them to local storage. However, I am facing challenges in saving/deleting quiz questions for each quiz.
I am developing this project in Yeoman-Ember. I attempted to showcase a demo on JSBin, but encountered some issues. As an alternative, you can access a demo build here: and download the current state of the build in a zip file from this link:
Below is the content of my combined-scripts.js file:
(function() {
var Quizmaker = window.Quizmaker = Ember.Application.create();
/* Order and include as you please. */
})();
// The JS code continues... (The original script continues from here.)
If you have any suggestions on how I can enhance the functionality and resolve the issues with saving/deleting quiz questions, your input would be greatly appreciated. Additionally, I am seeking guidance on how to automatically toggle the isEditing state based on the display of the /edit route, rather than triggering it through an action.