mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
Merge pull request #5854 from svbergerem/remove-managing-services-standalone
Remove 'manage services' link in standalone mode
This commit is contained in:
@@ -16,11 +16,15 @@ describe("app.views.Publisher", function() {
|
||||
});
|
||||
|
||||
it("hides the close button in standalone mode", function() {
|
||||
expect(this.view.$('#hide_publisher').is(':visible')).toBeFalsy();
|
||||
expect(this.view.$("#hide_publisher").is(":visible")).toBeFalsy();
|
||||
});
|
||||
|
||||
it("hides the post preview button in standalone mode", function() {
|
||||
expect(this.view.$('.post_preview_button').is(':visible')).toBeFalsy();
|
||||
expect(this.view.$(".post_preview_button").is(":visible")).toBeFalsy();
|
||||
});
|
||||
|
||||
it("hides the manage services link in standalone mode", function() {
|
||||
expect(this.view.$(".question_mark").is(":visible")).toBeFalsy();
|
||||
});
|
||||
|
||||
describe("createStatusMessage", function(){
|
||||
|
||||
Reference in New Issue
Block a user