fixed issue where import triggerCalleeModalEvent broke javascript in navbar
This commit is contained in:
parent
7922a55e14
commit
e0995c7610
|
@ -40,4 +40,4 @@ const triggerCalleeModalEvent = () => {
|
|||
$("#calleeModal").modal('show');
|
||||
}
|
||||
|
||||
export { triggerCalleeModalEvent }
|
||||
// export { triggerCalleeModalEvent }
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
import ActionCable from 'actioncable'
|
||||
import { triggerCalleeModalEvent } from "./application.js";
|
||||
// import { triggerCalleeModalEvent } from "./application";
|
||||
|
||||
const triggerCalleeModalEvent = () => {
|
||||
$("#calleeModal").modal('show');
|
||||
}
|
||||
|
||||
// create App object with key cable == new consumer
|
||||
(function() {
|
||||
|
|
|
@ -61,4 +61,3 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<%= javascript_pack_tag 'notifications' %>
|
||||
<%= javascript_pack_tag 'local_video' %>
|
||||
<%= javascript_pack_tag 'notifications' %>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue