Skip to content
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

Remove “process 2014” from the options in the UI #239

Merged
merged 2 commits into from
Sep 1, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/rules/sotd/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ exports.check = function (sr, done) {
return done();
}

if ('2015' === processDocument) {
proc = '1 September 2015';
procUri = 'http://www.w3.org/2015/Process-20150901/';
if (processDocument === "2015") {
proc = "1 September 2015";
procUri = "http://www.w3.org/2015/Process-20150901/";
}
else if (processDocument === "2005") {
proc = "14 October 2005";
Expand Down
4 changes: 0 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ <h3 class="panel-title">Options</h3>
<input type="radio" name="processDocument" class="input-sm">
1 September 2015
</label>
<label id="2014" class="btn btn-primary input-sm">
<input type="radio" name="processDocument" class="input-sm">
1 August 2014
</label>
<label id="2005" class="btn btn-primary input-sm">
<input type="radio" name="processDocument" class="input-sm">
14 October 2005
Expand Down