forked from FrDH/mmenu-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fred Heusschen
committed
Mar 23, 2019
1 parent
6113d3b
commit d4694bd
Showing
15 changed files
with
170 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
const options = { | ||
add: false, | ||
use: false, | ||
top: [], | ||
bottom: [], | ||
position: 'left', | ||
type: 'default' | ||
}; | ||
export default options; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
const options : mmOptionsIconbar = { | ||
add: false, | ||
use: false, | ||
top: [], | ||
bottom : [], | ||
position: 'left', | ||
type: 'default' | ||
}; | ||
export default options; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
/** Options for the iconbar add-on. */ | ||
interface mmOptionsIconbar { | ||
|
||
/** Whether or not to prepend an iconbar to the menu. */ | ||
add ?: boolean, | ||
/** Whether or not (and at what breakpoint) to add an iconbar to the menu. */ | ||
use ?: boolean | number | string, | ||
|
||
/** An array of strings (for text or HTML) or HTML elements for icons to put in the top of the iconbar. */ | ||
top ?: string[] | HTMLElement[], | ||
|
||
/** An array of strings (for text or HTML) or HTML elements for icons to put in the bottom of the iconbar. */ | ||
bottom ?: string[] | HTMLElement[], | ||
|
||
/** Where to position the iconbar, on the left or right. */ | ||
position ?: 'left' | 'right' | ||
|
||
/** The type of iconbar. */ | ||
type ?: 'default' | 'tabs' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.