Changeset 695
- Timestamp:
- 01/23/07 18:32:07 (6 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
XinhaCore.js (modified) (2 diffs)
-
modules/FullScreen/full-screen.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/XinhaCore.js
r688 r695 5061 5061 { 5062 5062 var url, lang; 5063 if (typeof context == 'object' && context.url) 5064 { 5065 url = context.url + _editor_lang + ".js"; 5066 context = context.context; 5067 } 5063 5068 if ( typeof _editor_lcbackend == "string" ) 5064 5069 { … … 5068 5073 url = url.replace(/%context%/, context); 5069 5074 } 5070 else 5075 else if (!url) 5071 5076 { 5072 5077 //use internal files -
trunk/modules/FullScreen/full-screen.js
r694 r695 40 40 41 41 FullScreen.prototype._lc = function(string) { 42 return HTMLArea._lc(string, 'FullScreen');42 return HTMLArea._lc(string, {url : _editor_url + 'modules/FullScreen/lang/'}); 43 43 }; 44 44
