-
Notifications
You must be signed in to change notification settings - Fork 1
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
Teachers would like a web browser based interface #39
Comments
* origin/master: refs #47 Clean up the main readme.md refs #47 Bump release version to 0.3.2 and tag release. refs #26, #39 Fix the question layout, use <p> instead of <h4> which is block visibility. I may change this later because it looks nicer, but need to deal with the case where lines wrap past the end. Shouldn't happen in practice. refs #26, #39 Fix a number of new foundation 4 and general layout problems. Add reveal.js as this actually handles semi-normal layout. I'm a bit confused at how we are treating the data in #iq-area, but can work it out later. refs #26, #39 Was missing a div needed to display the "waiting to start making questions". Clean up some harmless js. refs #26, #39, #38 Undo the lint fixes .... refs #26, #39, #38 Take care of the majority of the lint errors, we'll leave the redefs and comma errors. refs #26, #39 Fix login state transition, all a result of foundation 4 getting rid of "tabs" in favor of html5 flavored sections. refs #26 #39 Add updated blockui version, add section.js from foundation, and fixed smilestudent.js issues with the tab handling. Also, get tabs working. refs #26 Fix the columns, use <size>-# . Not <# spelled out>. refs #26 Initial upgrade to foundation 4.3.2.
@chrqls We should prioritize this one next. We've got a lot of requests for teacher web app. |
Do we need to use a specific technology for this web application? or it doesn't matter? |
[#39] Birth of a web app for teachers (session values page)
I'd like this to follow same tech in terms of technology: foundation + ko.js and jquery.As for design, up to you. Sent from my BlackBerry 10 smartphone. From: Charles QuelosSent: Thursday, April 17, 2014 5:27 AMTo: RazortoothRTC/node-smile-serverReply To: RazortoothRTC/node-smile-serverCc: truedat101Subject: Re: [node-smile-server] Teachers would like a web browser based interface (#39)Do we need to use a specific technology for this web application? or it doesn't matter? —Reply to this email directly or view it on GitHub. |
…is already running
…still not working (problem with id)
[#39] Updating web client for teacher (preview iqset in progress)
@truedat101 , I need your opinion about the JQuery issue I have here. I don't know why but when I click on a button "more", it does not display the id of the iqset. The viewThe JS codeAnd the method previewIQSet looks pretty simple: function previewIQSet() {
smileAlert('#globalstatus', '1st attempt='+$(this).attr('name'), 'blue', 10000); // should display the string 'id'
smileAlert('#globalstatus', '2nd attempt='+$(this).attr('value'), 'blue', 10000); // should display a very long id
smileAlert('#globalstatus', '3rd attempt='+$(this).parent().find('input[type=hidden]').attr('name'), 'blue', 10000); // should display a very long id
} Have you any idea why the values do not appear ? |
I'll have a look at this. On Sat, Apr 26, 2014 at 8:05 AM, Charles Quelos [email protected]:
|
So take a look at onclick and the event object in any of the html DOM docs online. This one is particularly annoying, because, if you work from the HTML/js side of things, and try to mix in jquery, you need to remember that the https://developer.mozilla.org/en-US/docs/Web/API/Event?redirectlocale=en-US&redirectslug=DOM%2Fevent So make sure in your onclick that you pass the event object into previewIQSet(event), and in your previewIQSet function def, you have some argument, say, "e", which is the target event of the click. Alternatively, you can bind a click to '#globalstatus', but you'll want to look at the jquery docs or the existing code for how we do this already. So in the code you've got now, you'd have $(e.target.id) and then whatever jquery methods chained on there. Give that a try. |
[#39] Updating web client for teacher (0.7.4)
[#39] Updating web client for teacher (0.8.1) and student (1.1.0)
I'll verify tonight |
Don't be surprised if you notice that the review of right&wrong answers (on student app) is broken. It is already fixed on my laptop (and it is even better). I will push this version maybe in 24h :) |
…for each student, and green light color when student finished answering
[#39] Updating web client for teacher (0.8.3)
Teacher app looks very cool. We might want to make a list of the things left to do to make this feature/equivalent with the Teacher Android app. [ ] - retake |
…eally too long...
…or each students operational, best score in gold
[#39] Updating web client for teacher (0.8.4) and a timer in webapp for student
…to a specific student
…reduced decimal size to 1 number for results in student table
[#39] Updating web client for teacher (0.8.7)
[X] - retake |
Relative issue: SMILEConsortium#20
The text was updated successfully, but these errors were encountered: