Browse Source

removed unnesessary logic, replaced by CSS style

bubble
Vladimir L 9 years ago
parent
commit
eaaf62a01e
1 changed files with 0 additions and 6 deletions
  1. +0
    -6
      src/main/javascript/view/OperationView.js

+ 0
- 6
src/main/javascript/view/OperationView.js View File

@@ -9,7 +9,6 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
'click .response_hider' : 'hideResponse',
'click .toggleOperation' : 'toggleOperationContent',
'mouseenter .api-ic' : 'mouseEnter',
'mouseout .api-ic' : 'mouseExit',
'dblclick .curl' : 'selectText',
},

@@ -72,11 +71,6 @@ SwaggerUi.Views.OperationView = Backbone.View.extend({
pos.top = y;
pos.left = x;
elem.css(pos);
// $(e.currentTarget.parentNode).find('#api_information_panel').show();
},

mouseExit: function(e) {
// $(e.currentTarget.parentNode).find('#api_information_panel').hide();
},

// Note: copied from CoffeeScript compiled file


Loading…
Cancel
Save