Loading Changelog.md +1 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,7 @@ ## Bug fixes ## Features * Ask for confirmation when leaving a submittable comment field [#7530](https://github.com/diaspora/diaspora/pull/7530) # 0.7.0.0 Loading app/assets/javascripts/app/views/comment_stream_view.js +2 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,8 @@ app.views.CommentStream = app.views.Base.extend({ }.bind(this), onFocus: this.openForm.bind(this) }); this.$("form").areYouSure(); }, presenter: function(){ Loading features/desktop/comments.feature +1 −0 Original line number Diff line number Diff line Loading @@ -19,6 +19,7 @@ Feature: commenting When I focus the comment field And I fill in the following: | text | is that a poodle? | And I reject the alert after I follow "My activity" And I press "Comment" Then I should see "is that a poodle?" within ".comment" And I should see "less than a minute ago" within ".comment time" Loading spec/javascripts/app/views/comment_stream_view_spec.js +6 −0 Original line number Diff line number Diff line Loading @@ -92,6 +92,12 @@ describe("app.views.CommentStream", function(){ expect(renderedPreview).toBe("<div class='preview-content'>" + renderedText + "</div>"); expect(renderedPreview).toContain("Alice Awesome"); }); it("calls jQuery.AreYouSure()", function() { spyOn($.fn, "areYouSure"); this.view.postRenderTemplate(); expect($.fn.areYouSure).toHaveBeenCalled(); }); }); describe("createComment", function() { Loading Loading
Changelog.md +1 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,7 @@ ## Bug fixes ## Features * Ask for confirmation when leaving a submittable comment field [#7530](https://github.com/diaspora/diaspora/pull/7530) # 0.7.0.0 Loading
app/assets/javascripts/app/views/comment_stream_view.js +2 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,8 @@ app.views.CommentStream = app.views.Base.extend({ }.bind(this), onFocus: this.openForm.bind(this) }); this.$("form").areYouSure(); }, presenter: function(){ Loading
features/desktop/comments.feature +1 −0 Original line number Diff line number Diff line Loading @@ -19,6 +19,7 @@ Feature: commenting When I focus the comment field And I fill in the following: | text | is that a poodle? | And I reject the alert after I follow "My activity" And I press "Comment" Then I should see "is that a poodle?" within ".comment" And I should see "less than a minute ago" within ".comment time" Loading
spec/javascripts/app/views/comment_stream_view_spec.js +6 −0 Original line number Diff line number Diff line Loading @@ -92,6 +92,12 @@ describe("app.views.CommentStream", function(){ expect(renderedPreview).toBe("<div class='preview-content'>" + renderedText + "</div>"); expect(renderedPreview).toContain("Alice Awesome"); }); it("calls jQuery.AreYouSure()", function() { spyOn($.fn, "areYouSure"); this.view.postRenderTemplate(); expect($.fn.areYouSure).toHaveBeenCalled(); }); }); describe("createComment", function() { Loading