summaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2014-02-28 21:12:19 +0100
committerStas Vilchik <vilchiks@gmail.com>2014-02-28 21:12:27 +0100
commit359f6a82cdd7393ed4bfdf5bc4b3e0413a660bb5 (patch)
tree317b70bfeb650c048f214df7cc7087b795a11332 /sonar-server
parent0680bfd25f3695b66e9c8bfa9cc4e3604f281ddd (diff)
downloadsonarqube-359f6a82cdd7393ed4bfdf5bc4b3e0413a660bb5.tar.gz
sonarqube-359f6a82cdd7393ed4bfdf5bc4b3e0413a660bb5.zip
Add missed file
Diffstat (limited to 'sonar-server')
-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);