-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check if a class is registrable before it is registered.
- Loading branch information
Showing
13 changed files
with
103 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
cursor: pointer; | ||
} | ||
</style> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/jaxon-php/[email protected].3/dist/libs/chibi/chibi.js" charset="UTF-8"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/jaxon-php/[email protected].3/dist/jaxon.core.js" charset="UTF-8"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/jaxon-php/[email protected].6/dist/libs/chibi/chibi.js" charset="UTF-8"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/jaxon-php/[email protected].6/dist/jaxon.core.js" charset="UTF-8"></script> | ||
|
||
<script type="text/javascript" charset="UTF-8"> | ||
/* <![CDATA[ */ | ||
|
@@ -16,6 +16,11 @@ jaxon.config.defaultMode = "asynchronous"; | |
jaxon.config.defaultMethod = "POST"; | ||
jaxon.config.responseType = "JSON"; | ||
|
||
JaxonSamplePackageClass = {}; | ||
JaxonSamplePackageClass.home = function() { | ||
return jaxon.request({ jxncls: 'SamplePackageClass', jxnmthd: 'home' }, { parameters: arguments }); | ||
}; | ||
|
||
jxn_my_first_function = function() { | ||
return jaxon.request({ jxnfun: 'my_first_function' }, { parameters: arguments }); | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<style> | ||
.pagination li a { | ||
cursor: pointer; | ||
} | ||
</style> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/jaxon-php/[email protected]/dist/libs/chibi/chibi.js" charset="UTF-8"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/jaxon-php/[email protected]/dist/jaxon.core.js" charset="UTF-8"></script> | ||
|
||
<script type="text/javascript" charset="UTF-8"> | ||
/* <![CDATA[ */ | ||
jaxon.config.requestURI = "http://example.test/path"; | ||
jaxon.config.statusMessages = false; | ||
jaxon.config.waitCursor = true; | ||
jaxon.config.version = "Jaxon 5.x"; | ||
jaxon.config.defaultMode = "asynchronous"; | ||
jaxon.config.defaultMethod = "POST"; | ||
jaxon.config.responseType = "JSON"; | ||
|
||
JaxonSamplePackageClass = {}; | ||
JaxonSamplePackageClass.home = function() { | ||
return jaxon.request({ jxncls: 'SamplePackageClass', jxnmthd: 'home' }, { parameters: arguments }); | ||
}; | ||
|
||
jxn_my_first_function = function() { | ||
return jaxon.request({ jxnfun: 'my_first_function' }, { parameters: arguments }); | ||
}; | ||
jxn_my_alias_function = function() { | ||
return jaxon.request({ jxnfun: 'my_alias_function' }, { parameters: arguments, upload: 'html_field_id' }); | ||
}; | ||
jxn_my_third_function = function() { | ||
return jaxon.request({ jxnfun: 'my_third_function' }, { parameters: arguments }); | ||
}; | ||
|
||
jaxon.dom.ready(function() { | ||
|
||
jaxon.processCustomAttrs(); | ||
}); | ||
|
||
/* ]]> */ | ||
</script> |