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
In annotation.html there is
<select id="shapeTypeSelector" class="regular h2"> <option value="box" class="regular" selected> Box </option> <option value="box_by_4_points" class="regular" selected> Box by 4 points </option>
Where both of these items are marked as selected. However, in shapeCreator.js line 235 does the following:
this._typeSelector.val('box');
This creates some redundancy.
The text was updated successfully, but these errors were encountered:
Resolved with the PR above
Sorry, something went wrong.
bsekachev
No branches or pull requests
In annotation.html there is
<select id="shapeTypeSelector" class="regular h2"> <option value="box" class="regular" selected> Box </option> <option value="box_by_4_points" class="regular" selected> Box by 4 points </option>
Where both of these items are marked as selected. However, in shapeCreator.js line 235 does the following:
this._typeSelector.val('box');
This creates some redundancy.
The text was updated successfully, but these errors were encountered: