Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'MDL-62160-master' of git://github.com/bmbrands/moodle
- Loading branch information
|
@@ -93,14 +93,14 @@ Y.extend(CONFIRM, M.core.notification.info, { |
|
|
this.publish('complete'); |
|
|
this.publish('complete-yes'); |
|
|
this.publish('complete-no'); |
|
|
this._yesButton = Y.Node.create('<input type="button" class="btn btn-primary m-r-1" id="id_yuiconfirmyes-' + |
|
|
this._yesButton = Y.Node.create('<input type="button" class="btn btn-primary" id="id_yuiconfirmyes-' + |
|
|
this.get('COUNT') + '" value="' + this.get(CONFIRMYES) + '" />'); |
|
|
this._noButton = Y.Node.create('<input type="button" class="btn btn-secondary m-r-1" id="id_yuiconfirmno-' + |
|
|
this._noButton = Y.Node.create('<input type="button" class="btn btn-secondary" id="id_yuiconfirmno-' + |
|
|
this.get('COUNT') + '" value="' + this.get(CONFIRMNO) + '" />'); |
|
|
this._question = Y.Node.create('<div class="confirmation-message">' + this.get(QUESTION) + '</div>'); |
|
|
var content = Y.Node.create('<div class="confirmation-dialogue"></div>') |
|
|
.append(this._question) |
|
|
.append(Y.Node.create('<div class="confirmation-buttons form-inline"></div>') |
|
|
.append(Y.Node.create('<div class="confirmation-buttons form-inline justify-content-around"></div>') |
|
|
.append(this._yesButton) |
|
|
.append(this._noButton)); |
|
|
this.get(BASE).addClass('moodle-dialogue-confirm'); |
|
|
Some generated files are not rendered by default. Learn more.
Oops, something went wrong.
|
@@ -93,14 +93,14 @@ Y.extend(CONFIRM, M.core.notification.info, { |
|
|
this.publish('complete'); |
|
|
this.publish('complete-yes'); |
|
|
this.publish('complete-no'); |
|
|
this._yesButton = Y.Node.create('<input type="button" class="btn btn-primary m-r-1" id="id_yuiconfirmyes-' + |
|
|
this._yesButton = Y.Node.create('<input type="button" class="btn btn-primary" id="id_yuiconfirmyes-' + |
|
|
this.get('COUNT') + '" value="' + this.get(CONFIRMYES) + '" />'); |
|
|
this._noButton = Y.Node.create('<input type="button" class="btn btn-secondary m-r-1" id="id_yuiconfirmno-' + |
|
|
this._noButton = Y.Node.create('<input type="button" class="btn btn-secondary" id="id_yuiconfirmno-' + |
|
|
this.get('COUNT') + '" value="' + this.get(CONFIRMNO) + '" />'); |
|
|
this._question = Y.Node.create('<div class="confirmation-message">' + this.get(QUESTION) + '</div>'); |
|
|
var content = Y.Node.create('<div class="confirmation-dialogue"></div>') |
|
|
.append(this._question) |
|
|
.append(Y.Node.create('<div class="confirmation-buttons form-inline"></div>') |
|
|
.append(Y.Node.create('<div class="confirmation-buttons form-inline justify-content-around"></div>') |
|
|
.append(this._yesButton) |
|
|
.append(this._noButton)); |
|
|
this.get(BASE).addClass('moodle-dialogue-confirm'); |
|
|
|
@@ -63,14 +63,14 @@ Y.extend(CONFIRM, M.core.notification.info, { |
|
|
this.publish('complete'); |
|
|
this.publish('complete-yes'); |
|
|
this.publish('complete-no'); |
|
|
this._yesButton = Y.Node.create('<input type="button" class="btn btn-primary m-r-1" id="id_yuiconfirmyes-' + |
|
|
this._yesButton = Y.Node.create('<input type="button" class="btn btn-primary" id="id_yuiconfirmyes-' + |
|
|
this.get('COUNT') + '" value="' + this.get(CONFIRMYES) + '" />'); |
|
|
this._noButton = Y.Node.create('<input type="button" class="btn btn-secondary m-r-1" id="id_yuiconfirmno-' + |
|
|
this._noButton = Y.Node.create('<input type="button" class="btn btn-secondary" id="id_yuiconfirmno-' + |
|
|
this.get('COUNT') + '" value="' + this.get(CONFIRMNO) + '" />'); |
|
|
this._question = Y.Node.create('<div class="confirmation-message">' + this.get(QUESTION) + '</div>'); |
|
|
var content = Y.Node.create('<div class="confirmation-dialogue"></div>') |
|
|
.append(this._question) |
|
|
.append(Y.Node.create('<div class="confirmation-buttons form-inline"></div>') |
|
|
.append(Y.Node.create('<div class="confirmation-buttons form-inline justify-content-around"></div>') |
|
|
.append(this._yesButton) |
|
|
.append(this._noButton)); |
|
|
this.get(BASE).addClass('moodle-dialogue-confirm'); |
|
|
|
@@ -1241,9 +1241,6 @@ body#page-lib-editor-tinymce-plugins-moodlemedia-preview { |
|
|
.moodle-dialogue-confirm .confirmation-message { |
|
|
margin: 0.5rem 0; |
|
|
} |
|
|
.moodle-dialogue-confirm .confirmation-buttons { |
|
|
text-align: right; |
|
|
} |
|
|
|
|
|
.moodle-dialogue-confirm .confirmation-dialogue input { |
|
|
min-width: 80px; |
|
|