You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
HTML
54 lines
1.6 KiB
HTML
<script>
|
|
var InitProduct = function (){
|
|
var http = HttpClient.instance()
|
|
var uri = '{{system.context}}/api/info/product'
|
|
http.get(uri,function(x){
|
|
$('.product').html(x.html)
|
|
})
|
|
}
|
|
var intro = {}
|
|
intro.show = function (show_ref,hide_ref){
|
|
show_ref = '.'+show_ref
|
|
hide_ref = '.'+hide_ref
|
|
$(hide_ref).slideUp(function(){
|
|
$(show_ref).slideDown()
|
|
})
|
|
|
|
}
|
|
$(document).ready(function(){
|
|
var uri = '{{system.context}}/api/info/about' ;
|
|
|
|
|
|
var http = HttpClient.instance()
|
|
http.get(uri,function(x){
|
|
var _object = JSON.parse(x.responseText)
|
|
|
|
// jx.dom.set.value('data-transport-support',_object.supported)
|
|
// $('#data-transport-support').html(_object.supported)
|
|
jx.dom.set.value('data-transport-version',_object.version)
|
|
// var label = $(' .tabs label')[0]
|
|
// label.click()
|
|
// _layout ={on:{load:{}}}
|
|
// _layout.on.load = {'plugins':['www/html/_notes/plugins-intro.html']}
|
|
// bootup.init('{{system.context}}',_layout)
|
|
|
|
})
|
|
})
|
|
</script>
|
|
|
|
|
|
<div class="introduction">
|
|
<div class="large-text">Quick Start</div>
|
|
By default basic installation has
|
|
<ul>
|
|
<li><i class="fa-solid fa-minus"></i> Add a label entry to registry :</li>
|
|
<li style="padding-left:48px"> • CLI, learn how</li>
|
|
<li style="padding-left:48px"> • Graphical User Interface, learn how</li>
|
|
<li><i class="fa-solid fa-minus"></i> Import in python code</li>
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|