mirror of https://github.com/ColorlibHQ/AdminLTE
Added demo to blank page
parent
4bc1bbe090
commit
0f46cb356b
|
@ -136,6 +136,13 @@ $.AdminLTE.options = {
|
|||
* options above.
|
||||
*/
|
||||
$(function () {
|
||||
//Extend options if external options exist
|
||||
if (typeof AdminLTEOptions !== "undefined") {
|
||||
$.AdminLTE.options = $.extend({},
|
||||
$.AdminLTE.options,
|
||||
AdminLTEOptions);
|
||||
}
|
||||
|
||||
//Easy access to options
|
||||
var o = $.AdminLTE.options;
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -564,5 +564,8 @@
|
|||
<script src='../../plugins/fastclick/fastclick.min.js'></script>
|
||||
<!-- AdminLTE App -->
|
||||
<script src="../../dist/js/app.min.js" type="text/javascript"></script>
|
||||
|
||||
<!-- Demo -->
|
||||
<script src="../../dist/js/demo.js" type="text/javascript"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue