Index: trunk/phase3/resources/mediawiki/mediawiki.js |
— | — | @@ -99,7 +99,8 @@ |
100 | 100 | return results; |
101 | 101 | } else if ( typeof selection === 'string' ) { |
102 | 102 | if ( typeof values[selection] === 'undefined' ) { |
103 | | - return 'fallback' in options !== 'undefined' ? options.fallback : null; |
| 103 | + return typeof options === 'object' && 'fallback' in options ? |
| 104 | + options.fallback : '<' + selection + '>'; |
104 | 105 | } else { |
105 | 106 | if ( typeof parser === 'function' ) { |
106 | 107 | return parser( values[selection], options ); |