Make some comments work better

These special comments can provide descriptions when you mouse over an identifier,
but they don't work with multiple declarations in one statement,
and if they're so small, they're not very noticeable.
main
Isaiah Odhner 2020-05-28 23:45:48 -04:00
parent 44dd6a7edc
commit b8417045c2
1 changed files with 7 additions and 3 deletions

View File

@ -76,8 +76,12 @@ let file_name;
let document_file_path;
let saved = true;
/** canvas coords */
let pointer, pointer_start, pointer_previous;
/** works in canvas coordinates */
let pointer;
/** works in canvas coordinates */
let pointer_start;
/** works in canvas coordinates */
let pointer_previous;
let pointer_active = false;
let pointer_type, pointer_buttons;
@ -87,7 +91,7 @@ let button;
let pointer_over_canvas = false;
let update_helper_layer_on_pointermove_active = false;
/** client coords */
/** works in client coordinates */
let pointers = [];
const update_from_url_params = ()=> {