From 21f703c6c4cda8090b1926511b8cbe85011fe8bd Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 23 Dec 2011 15:35:19 +0530 Subject: [PATCH] remove print statements --- source/Ox.UI/js/Form/Ox.Button.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/js/Form/Ox.Button.js b/source/Ox.UI/js/Form/Ox.Button.js index c0d0bf11..30add1fb 100644 --- a/source/Ox.UI/js/Form/Ox.Button.js +++ b/source/Ox.UI/js/Form/Ox.Button.js @@ -88,7 +88,7 @@ Ox.Button = function(options, self) { if (Ox.isArray(options.tooltip)) { self.options.tooltip = options.tooltip; - Ox.print('TOOLTIP', self.options.tooltip); + //Ox.print('TOOLTIP', self.options.tooltip); that.$tooltip.options({ title: self.options.tooltip[self.value] }); @@ -145,7 +145,7 @@ Ox.Button = function(options, self) { that.toggle = function() { if (self.options.values.length) { self.value = 1 - Ox.getPositionById(self.options.values, self.options.value); - Ox.print('S:O:', self.options, self.value) + //Ox.print('S:O:', self.options, self.value) self.options.title = self.options.values[self.value].title; self.options.value = self.options.values[self.value].id; setTitle();