Commit 258ab294 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray Committed by tauriedavis

Add content_class for limited width

parent ee10a1cc
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
function Issue() { function Issue() {
this.submitNoteForm = bind(this.submitNoteForm, this); this.submitNoteForm = bind(this.submitNoteForm, this);
// Prevent duplicate event bindings // Prevent duplicate event bindings
this.limitContainerWidth();
this.disableTaskList(); this.disableTaskList();
if ($('a.btn-close').length) { if ($('a.btn-close').length) {
this.initTaskList(); this.initTaskList();
...@@ -22,11 +21,6 @@ ...@@ -22,11 +21,6 @@
this.initCanCreateBranch(); this.initCanCreateBranch();
} }
Issue.prototype.limitContainerWidth = function() {
var $wrapper = $('.content-wrapper .container-fluid');
$wrapper.addClass('limit-container-width')
};
Issue.prototype.initTaskList = function() { Issue.prototype.initTaskList = function() {
$('.detail-page-description .js-task-list-container').taskList('enable'); $('.detail-page-description .js-task-list-container').taskList('enable');
return $(document).on('tasklist:changed', '.detail-page-description .js-task-list-container', this.updateTaskList); return $(document).on('tasklist:changed', '.detail-page-description .js-task-list-container', this.updateTaskList);
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
// Options: // Options:
// action - String, current controller action // action - String, current controller action
// //
this.limitContainerWidth();
this.opts = opts != null ? opts : {}; this.opts = opts != null ? opts : {};
this.submitNoteForm = bind(this.submitNoteForm, this); this.submitNoteForm = bind(this.submitNoteForm, this);
this.$el = $('.merge-request'); this.$el = $('.merge-request');
...@@ -32,11 +31,6 @@ ...@@ -32,11 +31,6 @@
} }
} }
MergeRequest.prototype.limitContainerWidth = function() {
var $wrapper = $('.content-wrapper .container-fluid');
$wrapper.addClass('limit-container-width')
};
// Local jQuery finder // Local jQuery finder
MergeRequest.prototype.$ = function(selector) { MergeRequest.prototype.$ = function(selector) {
return this.$el.find(selector); return this.$el.find(selector);
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
} }
} }
} }
.issuable-details { .issuable-details {
section { section {
.issuable-discussion { .issuable-discussion {
......
- @content_class = "limit-container-width"
- page_title "#{@issue.title} (#{@issue.to_reference})", "Issues" - page_title "#{@issue.title} (#{@issue.to_reference})", "Issues"
- page_description @issue.description - page_description @issue.description
- page_card_attributes @issue.card_attributes - page_card_attributes @issue.card_attributes
......
- @content_class = "limit-container-width"
- page_title "#{@merge_request.title} (#{@merge_request.to_reference})", "Merge Requests" - page_title "#{@merge_request.title} (#{@merge_request.to_reference})", "Merge Requests"
- page_description @merge_request.description - page_description @merge_request.description
- page_card_attributes @merge_request.card_attributes - page_card_attributes @merge_request.card_attributes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment