From 1000cfe73ef9a5913c924e0fb063259dd95a0a00 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Thu, 25 Sep 2014 12:28:29 +0200 Subject: [PATCH] move functionality from Ox.UI.js to Core/UI.js --- source/Ox.UI/Ox.UI.js | 66 ------------------------------------------- 1 file changed, 66 deletions(-) diff --git a/source/Ox.UI/Ox.UI.js b/source/Ox.UI/Ox.UI.js index 6d2b2cdc..f65485f4 100644 --- a/source/Ox.UI/Ox.UI.js +++ b/source/Ox.UI/Ox.UI.js @@ -442,72 +442,6 @@ Ox.load.UI = function(options, callback) { outer.remove(); return width; })(); - //@ Ox.UI.getBarSize get bar size by name - // fixme: the follwing should be deprecated - Ox.UI.getBarSize = function(size) { - var sizes = { - small: 20, - medium: 24, - large: 28 - }; - return sizes[size]; - }; - //@ Ox.UI.symbols unicode symbols - // fixme: these should be part of Ox - Ox.UI.symbols = { - alt: '\u2325', - apple: '\uF8FF', - arrow_down: '\u2193', - arrow_left: '\u2190', - arrow_right: '\u2192', - arrow_up: '\u2191', - backspace: '\u232B', - backup: '\u2707', - ballot: '\u2717', - black_star: '\u2605', - burn: '\u2622', - caps_lock: '\u21EA', - check: '\u2713', - //clear: '\u2327', - clear: '\u00D7', - click: '\uF803', - close: '\u2715', - command: '\u2318', - control: '\u2303', - cut: '\u2702', - 'delete': '\u2326', - diamond: '\u25C6', - edit: '\uF802', - eject: '\u23CF', - escape: '\u238B', - end: '\u2198', - enter: '\u2324', - fly: '\u2708', - gear: '\u2699', - home: '\u2196', - info: '\u24D8', - navigate: '\u2388', - option: '\u2387', - page_up: '\u21DE', - page_down: '\u21DF', - redo: '\u21BA', - 'return': '\u21A9', - //select: '\u21D5', - select: '\u25BE', - shift: '\u21E7', - sound: '\u266B', - space: '\u2423', - tab: '\u21E5', - trash: '\u267A', - triangle_down: '\u25BC', - triangle_left: '\u25C0', - triangle_right: '\u25BA', - triangle_up: '\u25B2', - undo: '\u21BB', - voltage: '\u26A1', - warning: '\u26A0', - white_star: '\u2606' - }; }