Provide Fork-Awesome and add an option to disable it (should be useful on installations with Framanav)
Signed-off-by: Thomas Citharel <tcit@tcit.fr> Use fork-awesome minified css Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
8ce671e4d9
commit
367b239549
@ -106,5 +106,6 @@ $config = [
|
|||||||
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
|
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
|
||||||
/* create_classic_poll.php */
|
/* create_classic_poll.php */
|
||||||
'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll.
|
'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll.
|
||||||
'markdown_editor_by_default' => true, // The markdown editor for the description is enabled by default
|
'markdown_editor_by_default' => true, // The markdown editor for the description is enabled by default
|
||||||
|
'provide_fork_awesome' => true, // Whether the build-in fork-awesome should be provided
|
||||||
];
|
];
|
||||||
|
@ -30,6 +30,7 @@ $smarty->assign('SERVER_URL', Utils::get_server_name());
|
|||||||
$smarty->assign('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
|
$smarty->assign('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
|
||||||
$smarty->assign('TITLE_IMAGE', IMAGE_TITRE);
|
$smarty->assign('TITLE_IMAGE', IMAGE_TITRE);
|
||||||
$smarty->assign('use_nav_js', strstr($_SERVER['SERVER_NAME'], 'framadate.org'));
|
$smarty->assign('use_nav_js', strstr($_SERVER['SERVER_NAME'], 'framadate.org'));
|
||||||
|
$smarty->assign('provide_fork_awesome', $config['provide_fork_awesome']);
|
||||||
$smarty->assign('locale', $locale);
|
$smarty->assign('locale', $locale);
|
||||||
$smarty->assign('langs', $ALLOWED_LANGUAGES);
|
$smarty->assign('langs', $ALLOWED_LANGUAGES);
|
||||||
$smarty->assign('date_format', $date_format);
|
$smarty->assign('date_format', $date_format);
|
||||||
|
2431
css/fork-awesome.css
Normal file
2431
css/fork-awesome.css
Normal file
File diff suppressed because it is too large
Load Diff
4
css/fork-awesome.min.css
vendored
Normal file
4
css/fork-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
css/fork-awesome.min.css.map
Normal file
1
css/fork-awesome.min.css.map
Normal file
File diff suppressed because one or more lines are too long
BIN
fonts/forkawesome-webfont.eot
Normal file
BIN
fonts/forkawesome-webfont.eot
Normal file
Binary file not shown.
2692
fonts/forkawesome-webfont.svg
Normal file
2692
fonts/forkawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 443 KiB |
BIN
fonts/forkawesome-webfont.ttf
Normal file
BIN
fonts/forkawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
fonts/forkawesome-webfont.woff
Normal file
BIN
fonts/forkawesome-webfont.woff
Normal file
Binary file not shown.
BIN
fonts/forkawesome-webfont.woff2
Normal file
BIN
fonts/forkawesome-webfont.woff2
Normal file
Binary file not shown.
@ -33,7 +33,8 @@ MDEWrapper.prototype.enable = function() {
|
|||||||
status: true,
|
status: true,
|
||||||
previewRender: myPreviewRender,
|
previewRender: myPreviewRender,
|
||||||
spellChecker: false,
|
spellChecker: false,
|
||||||
promptURLs: true
|
promptURLs: true,
|
||||||
|
autoDownloadFontAwesome: false
|
||||||
});
|
});
|
||||||
if (this.enableButton) {
|
if (this.enableButton) {
|
||||||
this.enableButton.addClass('active');
|
this.enableButton.addClass('active');
|
||||||
@ -59,4 +60,4 @@ MDEWrapper.prototype.disable = function() {
|
|||||||
|
|
||||||
MDEWrapper.prototype.isEnabled = function() {
|
MDEWrapper.prototype.isEnabled = function() {
|
||||||
return this.simplemde != null;
|
return this.simplemde != null;
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,9 @@
|
|||||||
<link rel="stylesheet" href="{'css/style.css'|resource}">
|
<link rel="stylesheet" href="{'css/style.css'|resource}">
|
||||||
<link rel="stylesheet" href="{'css/frama.css'|resource}">
|
<link rel="stylesheet" href="{'css/frama.css'|resource}">
|
||||||
<link rel="stylesheet" href="{'css/print.css'|resource}" media="print">
|
<link rel="stylesheet" href="{'css/print.css'|resource}" media="print">
|
||||||
|
{if $provide_fork_awesome}
|
||||||
|
<link rel="stylesheet" href="{'css/fork-awesome.min.css'|resource}">
|
||||||
|
{/if}
|
||||||
<script type="text/javascript" src="{'js/jquery-1.12.4.min.js'|resource}"></script>
|
<script type="text/javascript" src="{'js/jquery-1.12.4.min.js'|resource}"></script>
|
||||||
<script type="text/javascript" src="{'js/bootstrap.min.js'|resource}"></script>
|
<script type="text/javascript" src="{'js/bootstrap.min.js'|resource}"></script>
|
||||||
<script type="text/javascript" src="{'js/bootstrap-datepicker.js'|resource}"></script>
|
<script type="text/javascript" src="{'js/bootstrap-datepicker.js'|resource}"></script>
|
||||||
|
Loading…
Reference in New Issue
Block a user