mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-12-17 00:31:40 +00:00
more shorthandss...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
f80ed5ad45
commit
c2d9352b0f
@ -638,9 +638,6 @@ var DataPrototype = {
|
|||||||
|
|
||||||
// Shorthand methods...
|
// Shorthand methods...
|
||||||
//
|
//
|
||||||
// XXX firstImage/lastImage???
|
|
||||||
// XXX focusBaseRibbon?
|
|
||||||
// XXX test vertical...
|
|
||||||
// XXX should these be here???
|
// XXX should these be here???
|
||||||
focusImageOffset: function(offset){
|
focusImageOffset: function(offset){
|
||||||
offset = offset == null ? 0 : offset
|
offset = offset == null ? 0 : offset
|
||||||
@ -654,6 +651,8 @@ var DataPrototype = {
|
|||||||
},
|
},
|
||||||
nextImage: function(){ return this.focusImageOffset(1) },
|
nextImage: function(){ return this.focusImageOffset(1) },
|
||||||
prevImage: function(){ return this.focusImageOffset(-1) },
|
prevImage: function(){ return this.focusImageOffset(-1) },
|
||||||
|
firstImage: function(){ return this.focusImageOffset(-this.getImages('current').length) },
|
||||||
|
lastImage: function(){ return this.focusImageOffset(this.getImages('current').length) },
|
||||||
focusRibbonOffset: function(offset){
|
focusRibbonOffset: function(offset){
|
||||||
var c = this.getRibbonOrder()
|
var c = this.getRibbonOrder()
|
||||||
var t = c+offset
|
var t = c+offset
|
||||||
@ -665,6 +664,7 @@ var DataPrototype = {
|
|||||||
},
|
},
|
||||||
nextRibbon: function(){ return this.focusRibbonOffset(1) },
|
nextRibbon: function(){ return this.focusRibbonOffset(1) },
|
||||||
prevRibbon: function(){ return this.focusRibbonOffset(-1) },
|
prevRibbon: function(){ return this.focusRibbonOffset(-1) },
|
||||||
|
focusBaseRibbon: function(){ return this.focusImage(this.base) },
|
||||||
|
|
||||||
// Set base ribbon...
|
// Set base ribbon...
|
||||||
//
|
//
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user