This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/views/hide-modal.js.es6
2014-07-03 12:39:14 -04:00

9 lines
167 B
JavaScript

export default Em.View.extend({
// No rendering!
render: Em.K,
_hideModal: function() {
$('#discourse-modal').modal('hide');
}.on('didInsertElement')
});