update theme name in documentation
This commit is contained in:
parent
f45c47de59
commit
ab5e6061d7
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ Ox.load.Image = function(options, callback) {
|
||||||
image <o> Image object
|
image <o> Image object
|
||||||
> Ox.Image(1, 1, [255, 0, 0], function(i) { Ox.test(i.pixel([0, 0]), [255, 0, 0, 255]); })
|
> Ox.Image(1, 1, [255, 0, 0], function(i) { Ox.test(i.pixel([0, 0]), [255, 0, 0, 255]); })
|
||||||
undefined
|
undefined
|
||||||
> Ox.Image(Ox.UI.PATH + 'themes/classic/png/icon16.png', function(i) { i.encode('foo', function(i) { i.decode(function(s) { Ox.test(s, 'foo'); })})})
|
> Ox.Image(Ox.UI.PATH + 'themes/oxlight/png/icon16.png', function(i) { i.encode('foo', function(i) { i.decode(function(s) { Ox.test(s, 'foo'); })})})
|
||||||
undefined
|
undefined
|
||||||
@*/
|
@*/
|
||||||
Ox.Image = function() {
|
Ox.Image = function() {
|
||||||
|
|
|
@ -297,7 +297,7 @@ Ox.Input = function(options, self) {
|
||||||
/*
|
/*
|
||||||
if (self.options.type == 'textarea') {
|
if (self.options.type == 'textarea') {
|
||||||
Ox.extend(self, {
|
Ox.extend(self, {
|
||||||
colors: Ox.Theme() == 'classic' ?
|
colors: Ox.Theme() == 'oxlight' ?
|
||||||
[208, 232, 244] :
|
[208, 232, 244] :
|
||||||
//[0, 16, 32],
|
//[0, 16, 32],
|
||||||
[32, 48, 64],
|
[32, 48, 64],
|
||||||
|
|
Loading…
Reference in a new issue