Merge pull request #5854 from svbergerem/remove-managing-services-standalone

Remove 'manage services' link in standalone mode
This commit is contained in:
Jonne Haß
2015-04-20 22:35:23 +02:00
4 changed files with 17 additions and 8 deletions

View File

@@ -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(){