forked from 0x2620/oxjs
remove print statements
This commit is contained in:
parent
e3f900030c
commit
fbeb434e27
11 changed files with 0 additions and 24 deletions
|
|
@ -125,7 +125,6 @@ Ox.Editable = function(options, self) {
|
|||
function edit() {
|
||||
var height, width;
|
||||
if (self.options.editable && !self.options.editing) {
|
||||
//Ox.print('EDIT???')
|
||||
self.options.editing = true;
|
||||
that.addClass('OxEditing');
|
||||
self.originalValue = self.options.value;
|
||||
|
|
|
|||
|
|
@ -154,7 +154,6 @@ Ox.FileInput = function(options, self) {
|
|||
// try to add small files first
|
||||
return a.size - b.size;
|
||||
}).forEach(function(file) {
|
||||
Ox.print('::', file, exists(file), self.options.value)
|
||||
if (!exists(file) && (
|
||||
self.options.maxFiles == -1
|
||||
|| self.options.value.length < self.options.maxFiles
|
||||
|
|
|
|||
|
|
@ -120,7 +120,6 @@ Ox.InsertHTMLDialog = function(options, self) {
|
|||
) + '>' + values.text + '</' + item.id + '>';
|
||||
};
|
||||
} else if (['h1', 'b', 'i', 'code', 's', 'sub', 'sup', 'u'].indexOf(item.id) > -1) {
|
||||
//Ox.print(self.options.selection.indexOf('\n'), '?????????')
|
||||
form = [
|
||||
Ox.Input({
|
||||
height: 128,
|
||||
|
|
@ -208,7 +207,6 @@ Ox.InsertHTMLDialog = function(options, self) {
|
|||
|
||||
function renderForm() {
|
||||
var items = Ox.getObjectById(self.items, self.$select.value()).form;
|
||||
//Ox.print('??::""""????', self.$select.value())
|
||||
self.$form && self.$form.remove();
|
||||
if (items.length) {
|
||||
self.$form = Ox.Form({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue