Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Commit

Permalink
Merge pull request #393 from quailjs/fix-quail-eval
Browse files Browse the repository at this point in the history
Fix quail eval
  • Loading branch information
jessebeach committed Jan 25, 2016
2 parents 85384af + 237c664 commit c809d11
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 6,299 deletions.
26 changes: 0 additions & 26 deletions config/config.json

This file was deleted.

7 changes: 5 additions & 2 deletions dist/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -15003,7 +15003,7 @@ var DocumentLangIsISO639Standard = {
var matchedLang = false; // Check to see if a languagecode was matched

test.add(_case);
if (!DOM.is(element, 'html') || typeof langAttr === 'undefined') {
if (!DOM.is(element, 'html') || !langAttr) {
_case.set({
status: 'inapplicable'
});
Expand Down Expand Up @@ -19238,7 +19238,10 @@ var NewWindowIsOpened = {
});
});
test.forEach(function (_case) {
_case.get('element').click();
var element = _case.get('element');
if (element && element.click) {
element.click();
}
});
},

Expand Down
52 changes: 0 additions & 52 deletions dist/guidelines/508.json

This file was deleted.

Loading

0 comments on commit c809d11

Please sign in to comment.