From 94bf545190fad89648687e34e10f402d1f086932 Mon Sep 17 00:00:00 2001 From: Stasiek Michalski Date: Sun, 3 Jun 2018 13:36:09 +0200 Subject: [PATCH] Add JS for modal --- resources/assets/js/timeline.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/assets/js/timeline.js b/resources/assets/js/timeline.js index 02ffbb239..d995058a5 100644 --- a/resources/assets/js/timeline.js +++ b/resources/assets/js/timeline.js @@ -6,4 +6,7 @@ $(document).ready(function() { append: '.timeline-feed', history: false, }); -}); \ No newline at end of file + $("#modal-post").addClass("modal fade"); + $("#modal-dialog").addClass("modal-dialog"); + $("#modal-text").removeClass("d-none"); +});