We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The profile table is made editable by setting the contenteditable attribute:
$theCell.attr('contenteditable', 'true').focus(function()
In IE, this in not allowed on TD elements (table cells):
https://msdn.microsoft.com/en-us/library/ms537837(v=VS.85).aspx
This can be solved by putting a span element inside the TD, which is editable.
The text was updated successfully, but these errors were encountered:
Fixed IE issue with editing cells:
9e92e72
Editing profile doesn't work in IE: contenteditable cannot be set on td elements in IE BrewPi#51
Added parseDayString function to parse strings like "1d2h30m" in prof…
58dabac
…ile table
SHould be fixed by now in current dev branch.
Sorry, something went wrong.
No branches or pull requests
The profile table is made editable by setting the contenteditable attribute:
In IE, this in not allowed on TD elements (table cells):
https://msdn.microsoft.com/en-us/library/ms537837(v=VS.85).aspx
This can be solved by putting a span element inside the TD, which is editable.
The text was updated successfully, but these errors were encountered: