Skip to content

Commit 19c4098

Browse files
committed
chore(jshint): clearing semicolon warnings
1 parent 1b51231 commit 19c4098

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

js/angular/service/platform.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var PLATFORM_BACK_BUTTON_PRIORITY_POPUP = 400;
66
var PLATFORM_BACK_BUTTON_PRIORITY_LOADING = 500;
77

88
function componentConfig(defaults) {
9-
defaults.$get = function() { return defaults; }
9+
defaults.$get = function() { return defaults; };
1010
return defaults;
1111
}
1212

@@ -40,7 +40,7 @@ IonicModule
4040
position: ''
4141
}
4242
}
43-
})
43+
});
4444

4545

4646
IonicModule.config([

js/angular/service/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function($ionicTemplateLoader, $ionicBackdrop, $q, $timeout, $rootScope, $docume
326326
self.element.addClass('popup-tall');
327327
newHeight = window.innerHeight - popupHead[0].offsetHeight - popupButtons[0].offsetHeight -20;
328328
popupBody[0].style.height = newHeight + 'px';
329-
};
329+
}
330330

331331
self.element.removeClass('popup-hidden');
332332
self.element.addClass('popup-showing active');

0 commit comments

Comments
 (0)