(data)
| 98 | } |
| 99 | |
| 100 | get_element_rotation(data) { |
| 101 | const rotation_scale = this.scales.rotation; |
| 102 | return !rotation_scale || !data.rotation |
| 103 | ? 'rotate(' + this.model.get('rotate_angle') + ')' |
| 104 | : 'rotate(' + rotation_scale.scale(data.rotation) + ')'; |
| 105 | } |
| 106 | |
| 107 | update_position() { |
| 108 | const that = this; |
no outgoing calls
no test coverage detected