Skip to content

Commit

Permalink
finish linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ericawright committed May 12, 2016
1 parent ec813aa commit f04ac97
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 89 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
"Components": false,
"Services": false,
"Cc": false,
"Ci": false
"Ci": false,
"VTTabDataStore": false,
"VerticalTabs": false,
"TAB_DROP_TYPE": false,
"TabsInTitlebar": false
},
"rules": {
"mozilla/import-globals-from": 1,
Expand Down Expand Up @@ -49,7 +53,7 @@
"no-shadow": 0,
"no-trailing-spaces": [2, {"skipBlankLines": false}],
"no-underscore-dangle": 0,
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"no-unused-vars": [2, {"vars": "local", "args": "none"}],
"no-warning-comments": 0,
"object-curly-spacing": [2, "never"],
"no-var": 2,
Expand Down
6 changes: 4 additions & 2 deletions multiselect.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,18 @@

/**
* Support for "selecting" multiple tabs.
*
*
* The idea is to this work for tabs exactly like it does for a
* regular list or tree widget: hold Ctrl/Cmd or Shift and click.
* To make it work in the UI, tabs with multiselect="true" need to be
* styled like selected tabs.
*
*
* Use getMultiSelect() to obtain a list of selected tabs. For most
* cases this will be the only API you ever need.
*/

/*eslint-disable */ /*this file may be removed in future*/

const EXPORTED_SYMBOLS = ["VTMultiSelect"];

function VTMultiSelect (tabs) {
Expand Down
Loading

0 comments on commit f04ac97

Please sign in to comment.