forked from Botanical/BotanJS
Fixed resolver incorrectly stripping class names
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
, visualizer = function ( submitted, override )
|
||||
{
|
||||
|
||||
var id, stage = this.stage;
|
||||
var id, title, stage = this.stage;
|
||||
|
||||
if( override )
|
||||
{
|
||||
|
||||
@@ -103,8 +103,7 @@
|
||||
/* @type override {_AstXObject_.AstroEdit.Visualizer.Snippet.Code.Override} */
|
||||
, visualizer = function( submitted, override )
|
||||
{
|
||||
var lang, code, inline
|
||||
, stage = this.stage;
|
||||
var lang, code, inline, stage = this && this.stage;
|
||||
|
||||
if( override )
|
||||
{
|
||||
|
||||
@@ -181,7 +181,7 @@
|
||||
|
||||
, visualizer = function ( submitted, override )
|
||||
{
|
||||
var hash, _obj, stage = this.stage;
|
||||
var hash, preferred, _obj, stage = this.stage;
|
||||
|
||||
if( override )
|
||||
{
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
var keyBinding = new EventKey(
|
||||
"KeyDown", function ( e )
|
||||
{
|
||||
var code;
|
||||
e = e || window.event;
|
||||
if ( e.keyCode ) code = e.keyCode;
|
||||
else if ( e.which ) code = e.which;
|
||||
|
||||
@@ -22,7 +22,7 @@ _AstConf_.AstroEdit.paths = {};
|
||||
/** @type {object} */
|
||||
_AstConf_.AstroEdit.sections;
|
||||
|
||||
/** @type {object} */
|
||||
/** @type {!Object<string, *>} */
|
||||
_AstConf_.AstroEdit.flags = {};
|
||||
/** @type {string} */
|
||||
_AstConf_.AstroEdit.flags.URICount;
|
||||
|
||||
Reference in New Issue
Block a user