Merge pull request #49 from beatriceo/fixes
fixed issue where import triggerCalleeModalEvent broke javascript in …
This commit is contained in:
commit
482058e6bc
|
@ -40,4 +40,4 @@ const triggerCalleeModalEvent = () => {
|
||||||
$("#calleeModal").modal('show');
|
$("#calleeModal").modal('show');
|
||||||
}
|
}
|
||||||
|
|
||||||
export { triggerCalleeModalEvent }
|
// export { triggerCalleeModalEvent }
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
import ActionCable from 'actioncable'
|
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
|
// create App object with key cable == new consumer
|
||||||
(function() {
|
(function() {
|
||||||
|
|
|
@ -61,4 +61,3 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= javascript_pack_tag 'notifications' %>
|
|
||||||
<%= javascript_pack_tag 'local_video' %>
|
<%= javascript_pack_tag 'local_video' %>
|
||||||
|
<%= javascript_pack_tag 'notifications' %>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue