use Ox.$, not $; use .on, not .click
This commit is contained in:
parent
b834bb2b4d
commit
60fe713e65
1 changed files with 32 additions and 30 deletions
|
@ -87,7 +87,7 @@ Ox.DocPage = function(options, self) {
|
|||
function getItem(item, level, name) {
|
||||
Ox.Log('Core', 'getItem', item, level, name);
|
||||
var $elements = [
|
||||
$('<div>')
|
||||
Ox.$('<div>')
|
||||
.css({paddingLeft: (level ? level * 32 - 16 : 0) + 'px'})
|
||||
.html(
|
||||
'<code><b>' + (name || item.name) + '</b> '
|
||||
|
@ -124,7 +124,7 @@ Ox.DocPage = function(options, self) {
|
|||
isExpanded = !Ox.contains(section, 'inherited');
|
||||
if (item[section]) {
|
||||
if (section == 'description') {
|
||||
$elements.push($('<div>')
|
||||
$elements.push(Ox.$('<div>')
|
||||
.css({
|
||||
paddingTop: (level ? 0 : 8) + 'px',
|
||||
borderTopWidth: level ? 0 : '1px',
|
||||
|
@ -134,7 +134,7 @@ Ox.DocPage = function(options, self) {
|
|||
.html(Ox.sanitizeHTML(item.description))
|
||||
);
|
||||
} else {
|
||||
$elements.push($('<div>')
|
||||
$elements.push(Ox.$('<div>')
|
||||
.css({
|
||||
paddingTop: (level ? 0 : 8) + 'px',
|
||||
borderTopWidth: level ? 0 : '1px',
|
||||
|
@ -142,7 +142,7 @@ Ox.DocPage = function(options, self) {
|
|||
marginLeft: (level * 32) + 'px'
|
||||
})
|
||||
.append(
|
||||
$('<img>')
|
||||
Ox.$('<img>')
|
||||
.attr({
|
||||
src: isExpanded
|
||||
? Ox.UI.getImageURL('symbolDown')
|
||||
|
@ -153,7 +153,8 @@ Ox.DocPage = function(options, self) {
|
|||
height: '12px',
|
||||
margin: '0 4px -1px 0'
|
||||
})
|
||||
.click(function() {
|
||||
.on({
|
||||
click: function() {
|
||||
var $this = $(this),
|
||||
isExpanded = $this.attr('src') == Ox.UI.getImageURL('symbolRight');
|
||||
$this.attr({
|
||||
|
@ -176,6 +177,7 @@ Ox.DocPage = function(options, self) {
|
|||
$this.hide();
|
||||
}
|
||||
});
|
||||
}
|
||||
})
|
||||
)
|
||||
.append('<span class="OxSection">' + (
|
||||
|
@ -190,7 +192,7 @@ Ox.DocPage = function(options, self) {
|
|||
item.tests.forEach(function(test) {
|
||||
var isAsync = test.expected && /(.+Ox\.test\()/.test(test.statement);
|
||||
$elements.push(
|
||||
$('<div>')
|
||||
Ox.$('<div>')
|
||||
.addClass(className)
|
||||
.css({marginLeft: (level * 32 + 16) + 'px'})
|
||||
.html(
|
||||
|
@ -211,7 +213,7 @@ Ox.DocPage = function(options, self) {
|
|||
);
|
||||
if (test.expected) {
|
||||
$elements.push(
|
||||
$('<div>')
|
||||
Ox.$('<div>')
|
||||
.addClass(className)
|
||||
.css({marginLeft: (level * 32 + 16) + 'px'})
|
||||
.html(
|
||||
|
@ -234,7 +236,7 @@ Ox.DocPage = function(options, self) {
|
|||
});
|
||||
} else if (section == 'source') {
|
||||
// fixme: not the right place to fix path
|
||||
$elements.push($('<div>')
|
||||
$elements.push(Ox.$('<div>')
|
||||
.addClass(className)
|
||||
.css({marginLeft: 16 + 'px'})
|
||||
.html(
|
||||
|
|
Loading…
Reference in a new issue