Skip to content

Commit

Permalink
Update jsKeyboard.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeering committed May 13, 2015
1 parent e3cf9a4 commit 64b635b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/jsKeyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ var jsKeyboard = {
// 4th row
{ value: "123", isChar: "false", buttonClass: "button button_numberleft", onclick: "jsKeyboard.changeToNumber();", keyClass: "key key_number" },
{ value: "Space", isChar: "false", buttonClass: "button button_space", onclick: "jsKeyboard.space();", keyClass: "key key_space" },
{ value: "#$+", isChar: "false", buttonClass: "button button_symbolsright", onclick: "jsKeyboard.changeToSymbols();", keyClass: "key key_symbols" }
{ value: "#%+", isChar: "false", buttonClass: "button button_symbolsright", onclick: "jsKeyboard.changeToSymbols();", keyClass: "key key_symbols" }
],
smallLetter: [
// 1st row
Expand All @@ -201,7 +201,7 @@ var jsKeyboard = {
{ value: "123", isChar: "false", buttonClass: "button button_numberleft", onclick: "jsKeyboard.changeToNumber();", keyClass: "key key_number" },
// { value: 32, buttonClass: "button button_space" },
{ value: "Space", isChar: "false", buttonClass: "button button_space", onclick: "jsKeyboard.space();", keyClass: "key key_space" },
{ value: "#$+", isChar: "false", buttonClass: "button button_symbolsright", onclick: "jsKeyboard.changeToSymbols();", keyClass: "key key_symbols" }
{ value: "#%+", isChar: "false", buttonClass: "button button_symbolsright", onclick: "jsKeyboard.changeToSymbols();", keyClass: "key key_symbols" }
],
number: [
// 1st row
Expand All @@ -223,7 +223,7 @@ var jsKeyboard = {
// 4th row
{ value: "ABC", isChar: "false", buttonClass: "button button_numberleft", onclick: "jsKeyboard.changeToCapitalLetter();", keyClass: "key key_capitalletterleft" },
{ value: "Space", isChar: "false", buttonClass: "button button_space", onclick: "jsKeyboard.space();", keyClass: "key key_space" },
{ value: "#$+", isChar: "false", buttonClass: "button button_symbolsright", onclick: "jsKeyboard.changeToSymbols();", keyClass: "key key_symbols" }
{ value: "#%+", isChar: "false", buttonClass: "button button_symbolsright", onclick: "jsKeyboard.changeToSymbols();", keyClass: "key key_symbols" }
],
symbols: [
// 1st row
Expand Down Expand Up @@ -290,4 +290,4 @@ jQuery.fn.setCursorPosition = function(pos) {
    }
  });
  return this;
};
};

0 comments on commit 64b635b

Please sign in to comment.