forked from Botanical/BotanJS
Migrate old externs 5/x
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
/** @param {Astro.Blog.AstroEdit.Article} article */
|
||||
var Draft = function ( article, draftsUri )
|
||||
{
|
||||
/** @type {Astro.Blog.AstroEdit.Article} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.Article} */
|
||||
var Article = ns[ NS_INVOKE ]( "Article" );
|
||||
|
||||
if ( !( article instanceof Article ) ) return;
|
||||
|
||||
@@ -182,7 +182,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
Flag.prototype.getSetData = function () { };
|
||||
Flag.prototype.getData = function () { };
|
||||
Flag.prototype.setForView = function ( flagList ) { };
|
||||
|
||||
ns[ NS_EXPORT ]( EX_CLASS, "Flag", Flag );
|
||||
|
||||
@@ -762,6 +762,8 @@
|
||||
Dand.id( "asl_refresh", true ).addEventListener( "click", function( e ) { refreshCanvas( 0 ); } );
|
||||
new IDOMObject( document ).addEventListeners([ dKeyUp, dKeyDown ]);
|
||||
stage.addEventListener(showLibrary);
|
||||
|
||||
this.stage = stage;
|
||||
};
|
||||
|
||||
ns[ NS_EXPORT ]( EX_CLASS, "SiteLibrary", SiteLibrary );
|
||||
|
||||
@@ -69,6 +69,7 @@
|
||||
this.title = title;
|
||||
this.desc = desc;
|
||||
this.__cands = [];
|
||||
/** @type Array<Astro.Blog.AstroEdit.SmartInput.Definition> */
|
||||
this.__defs = defs || {};
|
||||
this.Empty = !defs;
|
||||
};
|
||||
@@ -79,7 +80,6 @@
|
||||
|
||||
for( var i in this.__defs )
|
||||
{
|
||||
/** @param {Astro.Blog.AstroEdit.SmartInput.Definition} */
|
||||
var c = this.__defs[i];
|
||||
this.__cands.push( Dand.wrapc( "cn", [ i, Dand.wrapc( "desc", c.desc ) ], new DataKey( "key", i ) ) );
|
||||
}
|
||||
|
||||
@@ -11,19 +11,19 @@
|
||||
var Bootstrap = __import( "Astro.Bootstrap" );
|
||||
/** @type {Astro.Blog.Config} */
|
||||
var Config = __import( "Astro.Blog.Config" );
|
||||
/** @type {Astro.Blog.AstroEdit.Article} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.Article} */
|
||||
var Article = __import( "Astro.Blog.AstroEdit.Article" );
|
||||
/** @type {Astro.Blog.AstroEdit.Draft} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.Draft} */
|
||||
var Draft = __import( "Astro.Blog.AstroEdit.Draft" );
|
||||
/** @type {Astro.Blog.AstroEdit.Flag} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.Flag} */
|
||||
var Flag = __import( "Astro.Blog.AstroEdit.Flag" );
|
||||
/** @type {Astro.Blog.AstroEdit.Visualizer} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.Visualizer} */
|
||||
var Visualizer = __import( "Astro.Blog.AstroEdit.Visualizer" );
|
||||
/** @type {Astro.Blog.AstroEdit.Uploader} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.Uploader} */
|
||||
var Uploader = __import( "Astro.Blog.AstroEdit.Uploader" );
|
||||
/** @type {Astro.Blog.AstroEdit.SiteLibrary} */
|
||||
/** @type {typeof Astro.Blog.AstroEdit.SiteLibrary} */
|
||||
var SiteLibrary = __import( "Astro.Blog.AstroEdit.SiteLibrary" );
|
||||
/** @type {Components.Vim.VimArea} */
|
||||
/** @type {typeof Components.Vim.VimArea} */
|
||||
var VimArea = __import( "Components.Vim.VimArea" );
|
||||
|
||||
// calls the smart bar
|
||||
|
||||
Reference in New Issue
Block a user