You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
985 B
38 lines
985 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<jsml xmlns="http://cutesoft.net/jsml"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://cutesoft.net/jsml ../core/jsml.xsd">
|
|
|
|
|
|
<panel jsml-class="sidebar_insertwhere" jsml-base="sidebarmenu" dock="fill">
|
|
<panel jsml-base="sidebarmenuitem" text="Back">
|
|
<attach name="click">
|
|
sidebar.back();
|
|
</attach>
|
|
</panel>
|
|
<panel jsml-base="sidebarmenuitem" text="To current position">
|
|
<attach name="click">
|
|
sidebar.back();
|
|
wherecallback();
|
|
</attach>
|
|
</panel>
|
|
<panel jsml-base="sidebarmenuitem" text="To document front">
|
|
<attach name="click">
|
|
sidebar.back();
|
|
editor.MoveToDocumentBegin();
|
|
wherecallback();
|
|
</attach>
|
|
</panel>
|
|
<panel jsml-base="sidebarmenuitem" text="To document end">
|
|
<attach name="click">
|
|
editor.MoveToDocumentEnd();
|
|
sidebar.back();
|
|
wherecallback();
|
|
</attach>
|
|
</panel>
|
|
</panel>
|
|
|
|
<panel jsml-base="sidebar_insertwhere" />
|
|
|
|
|
|
</jsml>
|