1
0
Fork 0
forked from 0x2620/oxjs
This commit is contained in:
j 2012-05-25 16:28:05 +00:00
commit eb9cd1e397
9 changed files with 34 additions and 9 deletions

View file

@ -40,6 +40,7 @@ Ox.LoadingIcon = function(options, self) {
css = 'rotate(' + deg + 'deg)';
that.css({
MozTransform: css,
MsTransform: css,
OTransform: css,
WebkitTransform: css
});

View file

@ -60,7 +60,7 @@ Ox.Filter = function(options, self) {
{id: '=,', title: 'is between'},
{id: '!=,', title: 'is not between'}
],
enum: [
'enum': [
{id: '=', title: 'is'},
{id: '!=', title: 'is not'},
{id: '<', title: 'is less than'},
@ -112,7 +112,7 @@ Ox.Filter = function(options, self) {
self.defaultValue = {
boolean: 'true',
date: Ox.formatDate(new Date(), '%F'),
enum: 0,
'enum': 0,
float: 0,
hue: 0,
integer: 0,