style: Fix stray/missing semi-colons

Spotted by eslint.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/607
This commit is contained in:
Florian Müllner
2019-01-29 02:18:52 +01:00
parent 55235c2552
commit 29b04fcbf2
45 changed files with 75 additions and 75 deletions

View File

@ -686,7 +686,7 @@ class ThumbnailsBox extends St.Widget {
let [r, x, y] = this.transform_stage_point(stageX, stageY);
for (let i = 0; i < this._thumbnails.length; i++) {
let thumbnail = this._thumbnails[i]
let thumbnail = this._thumbnails[i];
let [w, h] = thumbnail.actor.get_transformed_size();
if (y >= thumbnail.actor.y && y <= thumbnail.actor.y + h) {
thumbnail.activate(time);
@ -789,7 +789,7 @@ class ThumbnailsBox extends St.Widget {
break;
} else if (y > targetBottom && y <= nextTargetTop) {
this._dropWorkspace = i;
break
break;
}
targetBase = nextTargetBase;