diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-10-02 15:51:15 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-10-14 10:28:59 +0200 |
commit | 15b2160babc5c35ede960b7d0e133acbec8c6c51 (patch) | |
tree | 6475ad0602bbe4d6dae895aae43d331726ab8c33 /server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js | |
parent | e51e9c9eb0145ea5e9d40453554c456585b79936 (diff) | |
download | sonarqube-15b2160babc5c35ede960b7d0e133acbec8c6c51.tar.gz sonarqube-15b2160babc5c35ede960b7d0e133acbec8c6c51.zip |
improve the web build system, introduce gulp and browserify
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js b/server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js index a3d5ec6b7ad..e4ebc87eb29 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js +++ b/server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js @@ -1,11 +1,11 @@ import $ from 'jquery'; import _ from 'underscore'; import Marionette from 'backbone.marionette'; -import ModalFormView from 'components/common/modal-form'; -import './templates'; +import ModalFormView from '../../components/common/modal-form'; +import Template from './templates/quality-profiles-change-profile-parent.hbs'; export default ModalFormView.extend({ - template: Templates['quality-profiles-change-profile-parent'], + template: Template, onRender: function () { ModalFormView.prototype.onRender.apply(this, arguments); |