fix #799: use '(function() {}())', not '(function() {})()'
This commit is contained in:
parent
5bfc555b9e
commit
12ed2c93fc
4 changed files with 4 additions and 4 deletions
|
@ -24,4 +24,4 @@ Ox.Clipboard = (function() {
|
||||||
return type in clipboard;
|
return type in clipboard;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})();
|
}());
|
||||||
|
|
|
@ -100,4 +100,4 @@ Ox.Keyboard = (function() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
})();
|
}());
|
||||||
|
|
|
@ -282,7 +282,7 @@ Ox.formatDate <f> Formats a date according to a format string
|
||||||
return string;
|
return string;
|
||||||
};
|
};
|
||||||
|
|
||||||
})();
|
}());
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
Ox.formatDateRange <f> Formats a date range as a string
|
Ox.formatDateRange <f> Formats a date range as a string
|
||||||
|
|
|
@ -457,7 +457,7 @@ Ox.identify = (function() {
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
})();
|
}());
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
Ox.minify <f> Minifies JavaScript
|
Ox.minify <f> Minifies JavaScript
|
||||||
|
|
Loading…
Reference in a new issue