Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Removed the tag editor directive and used the existing tag editor pan…
Browse files Browse the repository at this point in the history
…el on the create ELB wizard
  • Loading branch information
kyolee310 committed Apr 17, 2015
1 parent c9b07fe commit e66fbed
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 335 deletions.
1 change: 0 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ module.exports = function(grunt) {
elb: ['eucaconsole/templates/dialogs/select_certificate_dialog.pt',
'eucaconsole/static/html/directives/instance_selector.html',
'eucaconsole/static/html/directives/elb_listener_editor.html',
'eucaconsole/static/html/directives/tag_editor.html',
'eucaconsole/templates/elbs/elb_wizard.pt'],
}
});
Expand Down
66 changes: 0 additions & 66 deletions eucaconsole/static/html/directives/tag_editor.html

This file was deleted.

2 changes: 1 addition & 1 deletion eucaconsole/static/js/pages/eucaconsole_wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
*/

angular.module('EucaConsoleWizard', ['EucaConsoleUtils', 'MagicSearch'])
angular.module('EucaConsoleWizard', ['EucaConsoleUtils', 'MagicSearch', 'TagEditor'])
.controller('EucaConsoleWizardCtrl', function ($scope, $http, $timeout, eucaHandleError, eucaUnescapeJson) {
$scope.elbForm = undefined;
$scope.urlParams = undefined;
Expand Down
262 changes: 0 additions & 262 deletions eucaconsole/static/js/widgets/tag_editor_directive.js

This file was deleted.

6 changes: 1 addition & 5 deletions eucaconsole/templates/elbs/elb_wizard.pt
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@
</div>
<hr />
<div>
<tag-editor
template="${request.static_path('eucaconsole:static/html/directives/tag_editor.html')}"
options='${controller_options_json}'>
</tag-editor>
${panel('tag_editor', show_name_tag=True)}
</div>
<hr />
<div>
Expand Down Expand Up @@ -372,7 +369,6 @@
<script src="${request.static_path('eucaconsole:static/js/pages/eucaconsole_wizard.js')}"></script>
<script src="${request.static_path('eucaconsole:static/js/pages/elb_wizard.js')}"></script>
<script src="${request.static_path('eucaconsole:static/js/widgets/elb_listener_editor.js')}"></script>
<script src="${request.static_path('eucaconsole:static/js/widgets/tag_editor_directive.js')}"></script>
<script src="${request.static_path('eucaconsole:static/js/thirdparty/magic-search/magic_search.js')}"></script>
<script src="${request.static_path('eucaconsole:static/js/widgets/instance_selector.js')}"></script>
</div>
Expand Down

0 comments on commit e66fbed

Please sign in to comment.