Skip to content

Commit 7c4f535

Browse files
committed
Site updated: 2020-03-24 19:31:44
1 parent 7deb879 commit 7c4f535

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

javascript/usage/index.html

+8-4
Original file line numberDiff line numberDiff line change
@@ -112,20 +112,24 @@ <h1 id="Usage-JavaScript-Library">Usage - JavaScript Library</h1>
112112
<ol>
113113
<li>On your web page, include the following line to import the AifyJS package into your application -</li>
114114
</ol>
115-
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">&lt;script src&#x3D;&quot;https:&#x2F;&#x2F;thecodefoundation.dev&#x2F;aify.js&quot;&gt;&lt;&#x2F;script&gt;</span><br></pre></td></tr></table></figure>
115+
<figure class="highlight html"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line"><span class="tag">&lt;<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://thecodefoundation.dev/aify.js"</span>&gt;</span><span class="tag">&lt;/<span class="name">script</span>&gt;</span></span><br></pre></td></tr></table></figure>
116+
<blockquote>
117+
<p>Note that you’ll need to include jQuery to your web page to use aifyjs.</p>
118+
</blockquote>
119+
<figure class="highlight html"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line"><span class="tag">&lt;<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"</span>&gt;</span><span class="tag">&lt;/<span class="name">script</span>&gt;</span></span><br></pre></td></tr></table></figure>
116120
<ol start="2">
117121
<li>In your web page, use the following line to instantiate a connection to the Aify API -</li>
118122
</ol>
119-
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">var ai &#x3D; new aifyjs(&quot;YOUR-API-KEY&quot;);</span><br></pre></td></tr></table></figure>
123+
<figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line"><span class="keyword">var</span> ai = <span class="keyword">new</span> aifyjs(<span class="string">"YOUR-API-KEY"</span>);</span><br></pre></td></tr></table></figure>
120124
<p>If you have not yet generated the API Key, read <a href="http://localhost:4000/getting-started/#Step-3-Get-your-API-Keys" target="_blank" rel="noopener">How to get your API Keys</a>.</p>
121125
<ol start="3">
122126
<li>To generate element labels on the web page, use the following line -</li>
123127
</ol>
124-
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">ai.labels();</span><br></pre></td></tr></table></figure>
128+
<figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">ai.labels();</span><br></pre></td></tr></table></figure>
125129
<ol start="4">
126130
<li>To fetch captions for the images on the page, use the following line -</li>
127131
</ol>
128-
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">ai.captions();</span><br></pre></td></tr></table></figure>
132+
<figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">ai.captions();</span><br></pre></td></tr></table></figure>
129133
<ol start="5">
130134
<li>
131135
<p>When your page loads, it will silently cause an update of the page source to reflect the labels and captions fetched from the Aify API.</p>

sitemap.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
</url>
77

88
<url>
9-
<loc>https://docs.thecodefoundation.dev/javascript/reference/</loc>
9+
<loc>https://docs.thecodefoundation.dev/javascript/usage/</loc>
1010

11-
<lastmod>2020-03-22T15:33:40.965Z</lastmod>
11+
<lastmod>2020-03-24T14:01:00.804Z</lastmod>
1212

1313
</url>
1414

1515
<url>
16-
<loc>https://docs.thecodefoundation.dev/javascript/usage/</loc>
16+
<loc>https://docs.thecodefoundation.dev/javascript/reference/</loc>
1717

18-
<lastmod>2020-03-22T15:17:35.624Z</lastmod>
18+
<lastmod>2020-03-22T15:33:40.965Z</lastmod>
1919

2020
</url>
2121

0 commit comments

Comments
 (0)