1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-22 06:03:27 +02:00

Issue #3912 Typing ':' now pops-up a menu of available routes. Bootstrap-suggest library added for this and other areas in future.

This commit is contained in:
Cameron
2021-02-17 14:33:35 -08:00
parent e371da1785
commit 823a228e7e
8 changed files with 216 additions and 21 deletions

View File

@@ -944,7 +944,7 @@ class core_library
// Animate (local).
// Animate (local).
$libraries['animate.css'] = array(
'name' => 'Animate.css (local)',
'vendor_url' => 'https://daneden.github.io/animate.css/',
@@ -960,25 +960,38 @@ class core_library
),
),
),
/* 'variants' => array(
// 'unminified' version for debugging.
'dev' => array(
'files' => array(
'css' => array(
'css/font-awesome.css' => array(
'zone' => 2,
),
),
),
),
),*/
// Override library path.
'library_path' => '{e_WEB}lib/animate.css',
// 'path' => '3.5.2',
'version' => '3.5.2',
);
// Animate (local).
$libraries['bootstrap-suggest'] = array(
'name' => 'Bootstrap Suggest (local)',
'vendor_url' => 'https://github.com/lodev09/bootstrap-suggest',
'version_arguments' => array(
'file' => 'bootstrap-suggest.js',
'pattern' => '/(\d\.\d\.\d+)/',
'lines' => 3,
),
'files' => array(
'css' => array(
'bootstrap-suggest.css' => array(
'zone' => 2,
),
),
'js' => array(
'bootstrap-suggest.min.js' => array(
'zone' => 2,
),
),
),
'library_path' => '{e_WEB}lib/bootstrap-suggest',
'path' => 'dist',
'version' => '2.0.3',
);
return $libraries;