You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -335,7 +335,7 @@ var MultiColumnWizard = new Class(
335
335
336
336
/**
337
337
* Add a load callback for the instance
338
-
* @param string the key e.g. 'copy' - your button has to have the matching rel="" attribute (<a href="jsfallbackurl" rel="copy">...</a>)
338
+
* @param string the key e.g. 'copy' - your button has to have the matching data-operations="" attribute (<a href="jsfallbackurl" data-operations="copy">...</a>)
339
339
* @param function callback
340
340
*/
341
341
addOperationLoadCallback: function(key,func)
@@ -344,13 +344,13 @@ var MultiColumnWizard = new Class(
344
344
{
345
345
this.operationLoadCallbacks[key]=[];
346
346
}
347
-
347
+
348
348
this.operationLoadCallbacks[key].include(func);
349
349
},
350
350
351
351
/**
352
352
* Add a load callback for the instance
353
-
* @param string the key e.g. 'copy' - your button has to have the matching rel="" attribute (<a href="jsfallbackurl" rel="copy">...</a>)
353
+
* @param string the key e.g. 'copy' - your button has to have the matching data-operations="" attribute (<a href="jsfallbackurl" data-operations="copy">...</a>)
354
354
* @param function callback
355
355
*/
356
356
addOperationUpdateCallback: function(key,func)
@@ -359,13 +359,13 @@ var MultiColumnWizard = new Class(
359
359
{
360
360
this.operationUpdateCallbacks[key]=[];
361
361
}
362
-
362
+
363
363
this.operationLoadCallbacks[key].include(func);
364
364
},
365
365
366
366
/**
367
367
* Add a click callback for the instance
368
-
* @param string the key e.g. 'copy' - your button has to have the matching rel="" attribute (<a href="jsfallbackurl" rel="copy">...</a>)
368
+
* @param string the key e.g. 'copy' - your button has to have the matching data-operations="" attribute (<a href="jsfallbackurl" data-operations="copy">...</a>)
369
369
* @param function callback
370
370
*/
371
371
addOperationClickCallback: function(key,func)
@@ -374,13 +374,13 @@ var MultiColumnWizard = new Class(
374
374
{
375
375
this.operationClickCallbacks[key]=[];
376
376
}
377
-
377
+
378
378
this.operationClickCallbacks[key].include(func);
379
379
},
380
380
381
381
killAllTinyMCE: function(el,row)
382
382
{
383
-
varparent=row.getParent('.multicolumnwizard');
383
+
varparent=row.getParent('.multicolumnwizard');
384
384
385
385
// skip if no tinymce class was found
386
386
if(parent.getElements('.tinymce').length==0)
@@ -420,21 +420,21 @@ var MultiColumnWizard = new Class(
* @param string the key e.g. 'copy' - your button has to have the matching rel="" attribute (<a href="jsfallbackurl" rel="copy">...</a>)
496
+
* @param string the key e.g. 'copy' - your button has to have the matching data-operations="" attribute (<a href="jsfallbackurl" data-operations="copy">...</a>)
* @param string the key e.g. 'copy' - your button has to have the matching rel="" attribute (<a href="jsfallbackurl" rel="copy">...</a>)
511
+
* @param string the key e.g. 'copy' - your button has to have the matching data-operations="" attribute (<a href="jsfallbackurl" data-operations="copy">...</a>)
* @param string the key e.g. 'copy' - your button has to have the matching rel="" attribute (<a href="jsfallbackurl" rel="copy">...</a>)
527
+
* @param string the key e.g. 'copy' - your button has to have the matching data-operations="" attribute (<a href="jsfallbackurl" data-operations="copy">...</a>)
0 commit comments