File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/web/mage/adminhtml/wysiwyg/tiny_mce Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ define([
335
335
* @param {String } id
336
336
*/
337
337
get : function ( id ) {
338
- return hugerte . get ( id ) ;
338
+ return tinyMCE . get ( id ) ;
339
339
} ,
340
340
341
341
/**
@@ -505,7 +505,7 @@ define([
505
505
toggle : function ( ) {
506
506
var content ;
507
507
508
- if ( ! hugerte . get ( this . getId ( ) ) ) {
508
+ if ( ! tinyMCE . get ( this . getId ( ) ) ) {
509
509
this . turnOn ( ) ;
510
510
511
511
return true ;
@@ -526,8 +526,8 @@ define([
526
526
* On form validation.
527
527
*/
528
528
onFormValidation : function ( ) {
529
- if ( hugerte . get ( this . getId ( ) ) ) {
530
- $ ( this . getId ( ) ) . value = hugerte . get ( this . getId ( ) ) . getContent ( ) ;
529
+ if ( tinyMCE . get ( this . getId ( ) ) ) {
530
+ $ ( this . getId ( ) ) . value = tinyMCE . get ( this . getId ( ) ) . getContent ( ) ;
531
531
}
532
532
} ,
533
533
You can’t perform that action at this time.
0 commit comments