Skip to content

Commit

Permalink
fix CC
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpenner committed Aug 6, 2015
1 parent fae8760 commit 24a792a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions CODE_OF_CONDUCT.md
@@ -1,9 +1,9 @@
+The Ember team and community are committed to everyone having a safe and inclusive experience.
+
+**Our Community Guidelines / Code of Conduct can be found here**:
+
+http://emberjs.com/guidelines/
+
+For a history of updates, see the page history here:
+
+https://github.com/emberjs/website/commits/master/source/guidelines.html.erb
The Ember team and community are committed to everyone having a safe and inclusive experience.

**Our Community Guidelines / Code of Conduct can be found here**:

http://emberjs.com/guidelines/

For a history of updates, see the page history here:

https://github.com/emberjs/website/commits/master/source/guidelines.html.erb
2 changes: 1 addition & 1 deletion can-use-input-files.js
Expand Up @@ -2,6 +2,6 @@ module.exports = function canUseInputFiles(inputFiles) {
if (!Array.isArray(inputFiles)) { return false; }

return inputFiles.filter(function(file) {
return !/[\{\}\*]/.test(file);
return !/[\{\}\|\*\?\!]/.test(file);
}).length === inputFiles.length;
};

0 comments on commit 24a792a

Please sign in to comment.