|
@@ -125,13 +125,16 @@
|
|
</a>
|
|
</a>
|
|
</nav>
|
|
</nav>
|
|
|
|
|
|
-
|
|
|
|
<main role="main" class="stag-content px-0">
|
|
<main role="main" class="stag-content px-0">
|
|
|
|
|
|
@yield('content')
|
|
@yield('content')
|
|
|
|
|
|
</main><!-- /.container -->
|
|
</main><!-- /.container -->
|
|
|
|
|
|
|
|
+ {{-- if pro is working on a client and is not in tht client --}}
|
|
|
|
+ <div class="current-work">
|
|
|
|
+ @include('app/current-work')
|
|
|
|
+ </div>
|
|
|
|
|
|
<!-- shortcut/suggest component -->
|
|
<!-- shortcut/suggest component -->
|
|
<link href="/css/shortcut.css" rel=stylesheet>
|
|
<link href="/css/shortcut.css" rel=stylesheet>
|
|
@@ -245,6 +248,12 @@
|
|
fastLoad('/patients/view/' + $(this).attr('data-target-uid'), true, false, false);
|
|
fastLoad('/patients/view/' + $(this).attr('data-target-uid'), true, false, false);
|
|
return false;
|
|
return false;
|
|
});
|
|
});
|
|
|
|
+
|
|
|
|
+ window.setInterval(function() {
|
|
|
|
+ $.get('/current-work', function(_data) {
|
|
|
|
+ $('.current-work').html(_data);
|
|
|
|
+ });
|
|
|
|
+ }, 2500);
|
|
});
|
|
});
|
|
</script>
|
|
</script>
|
|
<script>
|
|
<script>
|
|
@@ -293,8 +302,6 @@
|
|
})();
|
|
})();
|
|
</script>
|
|
</script>
|
|
|
|
|
|
- {{-- if pro is working on a client and is not in tht client --}}
|
|
|
|
-
|
|
|
|
</body>
|
|
</body>
|
|
|
|
|
|
</html>
|
|
</html>
|