- Timestamp:
- 01/13/12 04:57:37 (5 months ago)
- Location:
- trunk/studio/js
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/studio/js/design.js
r15784 r15871 12 12 this.iAnimationSpeed = oOptions.iAnimationSpeed == undefined ? 'slow' : oOptions.iAnimationSpeed; 13 13 } 14 BxDolStudioDesign.prototype.activate = function(sTemplateName, o Link) {14 BxDolStudioDesign.prototype.activate = function(sTemplateName, oChecbox) { 15 15 var $this = this; 16 16 var oDate = new Date(); … … 26 26 if(oData.code != 0) { 27 27 alert(oData.message); 28 29 $(oChecbox).attr('checked', 'checked').trigger('enable'); 28 30 return; 29 31 } -
trunk/studio/js/language.js
r15784 r15871 12 12 this.iAnimationSpeed = oOptions.iAnimationSpeed == undefined ? 'slow' : oOptions.iAnimationSpeed; 13 13 } 14 BxDolStudioLanguage.prototype.activate = function(sLanguageName, o Link) {14 BxDolStudioLanguage.prototype.activate = function(sLanguageName, oChecbox) { 15 15 var $this = this; 16 16 var oDate = new Date(); … … 26 26 if(oData.code != 0) { 27 27 alert(oData.message); 28 29 $(oChecbox).attr('checked', 'checked').trigger('enable'); 28 30 return; 29 31 } -
trunk/studio/js/module.js
r15784 r15871 13 13 } 14 14 15 BxDolStudioModule.prototype.activate = function(sName, o Link) {15 BxDolStudioModule.prototype.activate = function(sName, oChecbox) { 16 16 var $this = this; 17 17 var oDate = new Date(); … … 27 27 if(oData.code != 0) { 28 28 alert(oData.message); 29 30 $(oChecbox).attr('checked', 'checked').trigger('enable'); 29 31 return; 30 32 }
Note: See TracChangeset
for help on using the changeset viewer.