Skip to content

Commit

Permalink
calculator: clean-up unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
flaparoo committed Sep 10, 2024
1 parent 393f682 commit dbeeee9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/calculator/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
g.clear();
require("Font7x11Numeric7Seg").add(Graphics);

var DEFAULT_SELECTION_NUMBERS = '5', DEFAULT_SELECTION_OPERATORS = '=', DEFAULT_SELECTION_SPECIALS = 'R';
var RIGHT_MARGIN = 20;
var DEFAULT_SELECTION_NUMBERS = '5';
var RESULT_HEIGHT = 40;
var RESULT_MAX_LEN = Math.floor((g.getWidth() - 20) / 14);
var COLORS = {
Expand Down

0 comments on commit dbeeee9

Please sign in to comment.