1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
dojo._xdResourceLoaded(function(dojo, dijit, dojox){
return {depends: [["provide", "dojox.mobile._ScrollableMixin"],
["require", "dijit._WidgetBase"],
["require", "dojox.mobile.scrollable"]],
defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.mobile._ScrollableMixin"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.mobile._ScrollableMixin"] = true;
dojo.provide("dojox.mobile._ScrollableMixin");
dojo.require("dijit._WidgetBase");
dojo.require("dojox.mobile.scrollable");
// summary:
// Mixin for widgets to have a touch scrolling capability.
// description:
// Actual implementation is in scrollable.js.
// scrollable.js is not a dojo class, but just a collection
// of functions. This module makes scrollable.js a dojo class.
dojo.declare(
"dojox.mobile._ScrollableMixin",
null,
{
fixedHeader: "",
fixedFooter: "",
destroy: function(){
this.cleanup();
this.inherited(arguments);
},
startup: function(){
var params = {};
if(this.fixedHeader){
params.fixedHeaderHeight = dojo.byId(this.fixedHeader).offsetHeight;
}
if(this.fixedFooter){
var node = dojo.byId(this.fixedFooter);
if(node.parentNode == this.domNode){ // local footer
this.isLocalFooter = true;
node.style.bottom = "0px";
}
params.fixedFooterHeight = node.offsetHeight;
}
this.init(params);
this.inherited(arguments);
}
});
(function(){
var obj = new dojox.mobile.scrollable();
dojo.extend(dojox.mobile._ScrollableMixin, obj);
if(dojo.version.major == 1 && dojo.version.minor == 4){
// dojo-1.4 had a problem in inheritance behavior. (#10709 and #10788)
// This is a workaround to avoid the problem.
// There is no such a problem in dojo-1.3 and dojo-1.5.
dojo.mixin(dojox.mobile._ScrollableMixin._meta.hidden, obj);
}
})();
}
}};});
|