1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-09 10:22:51 +03:00

Started react implementation

This commit is contained in:
Dan Brown
2015-08-12 18:48:26 +01:00
parent 9f95cbcbfb
commit 8d72883dcb
8 changed files with 89 additions and 25 deletions

View File

@@ -10,6 +10,7 @@
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="/bower/bootstrap/dist/js/bootstrap.js"></script>
<script src="/bower/jquery-sortable/source/js/jquery-sortable.js"></script>
<script src="https://fb.me/react-0.13.3.js"></script>
<script>
$.fn.smoothScrollTo = function() {
if(this.length === 0) return;
@@ -62,5 +63,7 @@
</section>
@yield('bottom')
<script src="/js/all.js"></script>
</body>
</html>

View File

@@ -0,0 +1,5 @@
@extends('base')
@section('content')
<div id="container"></div>
@stop