* VRFS-1084-notify working on web layout

This commit is contained in:
Seth Call 2014-02-07 21:44:57 +00:00
parent ff9f132341
commit afbe4c09c2
5 changed files with 13 additions and 6 deletions

View File

@ -18,8 +18,7 @@
});
}
$(function() {
initialize();
})
context.JK.WelcomePage = initialize;
})(window, jQuery);

View File

@ -3,6 +3,7 @@
*= require client/jamkazam
*= require client/screen_common
*= require client/content
*= require client/notify
*= require client/ftue
*= require client/user_dropdown
*= require client/dialog

View File

@ -241,9 +241,7 @@
}
}
testConnected();
}
})
</script>

View File

@ -56,6 +56,7 @@
<%= render "clients/invitationDialog" %>
<%= render "users/signupDialog" %>
<%= render "users/signinDialog" %>
<%= render "clients/notify" %>
<%= yield(:extra_dialogs) %>
<script type="text/javascript">

View File

@ -13,4 +13,12 @@
Have questions about how JamKazam works?
<a href="#" id="faq-open">Here are some answers</a>.
<% end %>
<% end %>
<% end %>
<% content_for :extra_js do %>
<script type="text/javascript">
$(function () {
window.JK.WelcomePage();
})
</script>
<% end %>