You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/01/12 19:51:04 UTC

[12/12] git commit: [flex-asjs] [refs/heads/develop] - use triangle instead of arrow

use triangle instead of arrow


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/90278a17
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/90278a17
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/90278a17

Branch: refs/heads/develop
Commit: 90278a176f99a5d6fde1cdd6afc6f1d639ed5313
Parents: 72d08ed
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jan 12 10:49:02 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jan 12 10:49:02 2015 -0800

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/90278a17/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
index 87b7007..116b120 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
@@ -58,11 +58,11 @@ org.apache.flex.html.Spinner.prototype.createElement =
   this.element.style.verticalAlign = 'middle';
 
   this.incrementButton = new org.apache.flex.html.TextButton();
-  this.incrementButton.set_text('\u2191');
+  this.incrementButton.set_text('\u25B2');
   this.addElement(this.incrementButton);
 
   this.decrementButton = new org.apache.flex.html.TextButton();
-  this.decrementButton.set_text('\u2193');
+  this.decrementButton.set_text('\u25BC');
   this.addElement(this.decrementButton);
 
   this.controller = new org.apache.flex.html.