aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-server/src/main')
-rw-r--r--sonar-server/src/main/webapp/javascripts/quality-gate/views/quality-gate-detail-conditions-empty-view.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/javascripts/quality-gate/views/quality-gate-detail-conditions-empty-view.js b/sonar-server/src/main/webapp/javascripts/quality-gate/views/quality-gate-detail-conditions-empty-view.js
new file mode 100644
index 00000000000..658cfab3c83
--- /dev/null
+++ b/sonar-server/src/main/webapp/javascripts/quality-gate/views/quality-gate-detail-conditions-empty-view.js
@@ -0,0 +1,25 @@
+// Generated by CoffeeScript 1.6.3
+(function() {
+ var __hasProp = {}.hasOwnProperty,
+ __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
+
+ define(['backbone.marionette', 'handlebars'], function(Marionette, Handlebars) {
+ var QualityGateDetailConditionsView, _ref;
+ return QualityGateDetailConditionsView = (function(_super) {
+ __extends(QualityGateDetailConditionsView, _super);
+
+ function QualityGateDetailConditionsView() {
+ _ref = QualityGateDetailConditionsView.__super__.constructor.apply(this, arguments);
+ return _ref;
+ }
+
+ QualityGateDetailConditionsView.prototype.tagName = 'tr';
+
+ QualityGateDetailConditionsView.prototype.template = Handlebars.compile(jQuery('#quality-gate-detail-conditions-empty-template').html());
+
+ return QualityGateDetailConditionsView;
+
+ })(Marionette.ItemView);
+ });
+
+}).call(this);