My favorites | Sign in
Project Logo
             
Details: Show all Hide all

Last 30 days

  • Feb 20, 2010
    issue 3 (Quick options for "first" and "last" buttons) commented on by aflesler   -   You can also know the amount of items right away from the outside with a simple selector: $('#pane li').length I insist that going to first and last is not that common and doesn't add new possibilities to the plugin, just saves a few bytes for a minority.
    You can also know the amount of items right away from the outside with a simple selector: $('#pane li').length I insist that going to first and last is not that common and doesn't add new possibilities to the plugin, just saves a few bytes for a minority.
  • Feb 19, 2010
    issue 3 (Quick options for "first" and "last" buttons) commented on by ethan.sherrie   -   Or maybe the "move" function could handle special values like 'last'?
    Or maybe the "move" function could handle special values like 'last'?
  • Feb 19, 2010
    issue 3 (Quick options for "first" and "last" buttons) commented on by ethan.sherrie   -   True, it's straight-forward to do that for the "#first" button. However, having to specify the pane/target twice (in addition to the call to serialScroll) and having to declare how many items there are for the "#last" function is redundant, considering serialScroll already "knows about" and has easy access to both. SYou could be more terse, at the expense of readability: {{{ $(settings.last||[]).bind(event, function(e){jump(e,items.length)}); //jump to last item }}}
    True, it's straight-forward to do that for the "#first" button. However, having to specify the pane/target twice (in addition to the call to serialScroll) and having to declare how many items there are for the "#last" function is redundant, considering serialScroll already "knows about" and has easy access to both. SYou could be more terse, at the expense of readability: {{{ $(settings.last||[]).bind(event, function(e){jump(e,items.length)}); //jump to last item }}}
  • Feb 19, 2010
    issue 3 (Quick options for "first" and "last" buttons) changed by aflesler   -   Hi, you can achieve the same doing: $('#first').click(function(){ $('#pane').trigger('goto', 0); }); And the same for last, it's not really saving you many bytes but adds it for everyone else who isn't using it. I also don't consider that such a common use case. I appreciate your report though, thanks :)
    Status: WontFix
    Labels: Type-Enhancement Type-Defect
    Hi, you can achieve the same doing: $('#first').click(function(){ $('#pane').trigger('goto', 0); }); And the same for last, it's not really saving you many bytes but adds it for everyone else who isn't using it. I also don't consider that such a common use case. I appreciate your report though, thanks :)
    Status: WontFix
    Labels: Type-Enhancement Type-Defect
  • Feb 19, 2010
    issue 3 (Quick options for "first" and "last" buttons) commented on by ethan.sherrie   -   Sorry, probably should have been "Enhancement".
    Sorry, probably should have been "Enhancement".
  • Feb 19, 2010
    issue 3 (Quick options for "first" and "last" buttons) reported by ethan.sherrie   -   There are easy options for connecting serialScroll to "prev" and "next" buttons. I think "first" and "last" buttons are just as handy. I'm submitting a patch (basically 10 lines of trivial code) to implement this. Patch was made against trunk. Thanks for the handy plugins!
    There are easy options for connecting serialScroll to "prev" and "next" buttons. I think "first" and "last" buttons are just as handy. I'm submitting a patch (basically 10 lines of trivial code) to implement this. Patch was made against trunk. Thanks for the handy plugins!

Older

  • Dec 07, 2009
    r25 ( * jQuery.Parse doesn't touch non-strings) committed by aflesler   -   * jQuery.Parse doesn't touch non-strings
    * jQuery.Parse doesn't touch non-strings
  • Dec 07, 2009
    r24 ( * jQuery.Parse doesn't touch non-strings) committed by aflesler   -   * jQuery.Parse doesn't touch non-strings
    * jQuery.Parse doesn't touch non-strings
  • Dec 07, 2009
    r23 ( * Adding jQuery.parse) committed by aflesler   -   * Adding jQuery.parse
    * Adding jQuery.parse
  • Dec 07, 2009
    r22 ( * Fixing a comment) committed by aflesler   -   * Fixing a comment
    * Fixing a comment
  • Dec 07, 2009
    jquery.parse-1.0.0-min.js (jQuery.Parse 1.0.0 Minified) file uploaded by aflesler
  • Dec 07, 2009
    jquery.parse-1.0.0.js (jQuery.Parse 1.0.0 Source) file uploaded by aflesler
  • Dec 07, 2009
    jquery.parse-1.0.0.zip (jQuery.Parse 1.0.0 Zip) file uploaded by aflesler   -  
    Labels: Featured
    Labels: Featured
  • Nov 20, 2009
    r21 ( * Adding setting limit to scrollTo) committed by aflesler   -   * Adding setting limit to scrollTo
    * Adding setting limit to scrollTo
  • Nov 03, 2009
    r20 ( * Moving all comments to the line above the code * Savin...) committed by aflesler   -   * Moving all comments to the line above the code * Saving the namespace (.serialScroll) into a variable to make the code shorter
    * Moving all comments to the line above the code * Saving the namespace (.serialScroll) into a variable to make the code shorter
  • Aug 06, 2009
    r19 ( * The setting 'interval' implicitely assumes 'force' as tr...) committed by aflesler   -   * The setting 'interval' implicitely assumes 'force' as true.
    * The setting 'interval' implicitely assumes 'force' as true.
  • Aug 04, 2009
    r18 ( * If there's no matched container ('target') serialScroll ...) committed by aflesler   -   * If there's no matched container ('target') serialScroll just ignores the call.
    * If there's no matched container ('target') serialScroll just ignores the call.
  • Jul 23, 2009
    r17 ( * Removing redundant code) committed by aflesler   -   * Removing redundant code
    * Removing redundant code
  • Jul 23, 2009
    r16 ( * Moving the scrollTo (dependency) makefile to a top level...) committed by aflesler   -   * Moving the scrollTo (dependency) makefile to a top level makefile
    * Moving the scrollTo (dependency) makefile to a top level makefile
  • Jun 14, 2009
    r15 ( * Updating the TODO file) committed by aflesler   -   * Updating the TODO file
    * Updating the TODO file
  • Jun 14, 2009
    issue 2 (serialScroll: Callback on initialisation) Status changed by aflesler   -   Added on 1.2.2. You need to trigger('goto', 0) or w/e the start.
    Status: Fixed
    Added on 1.2.2. You need to trigger('goto', 0) or w/e the start.
    Status: Fixed
  • Jun 14, 2009
    issue 1 (serialScroll: Ability to access settings after initialisatio...) Status changed by aflesler   -   Added on 1.2.2.
    Status: Fixed
    Added on 1.2.2.
    Status: Fixed
  • Jun 14, 2009
    r14 ( * serialScroll 1.2.2 * The makefile doesn't re-build the...) committed by aflesler   -   * serialScroll 1.2.2 * The makefile doesn't re-build the source unless it gets -B
    * serialScroll 1.2.2 * The makefile doesn't re-build the source unless it gets -B
  • Jun 14, 2009
    jquery.serialScroll-1.2.2-min.js (jQuery.SerialScroll 1.2.2 Minified) file uploaded by aflesler
  • Jun 14, 2009
    jquery.serialScroll-1.2.2.js (jQuery.SerialScroll 1.2.2 Source) file uploaded by aflesler
  • Jun 14, 2009
    jquery.serialScroll-1.2.2.zip (jQuery.SerialScroll 1.2.2 Zip) file uploaded by aflesler   -  
    Labels: Featured
    Labels: Featured
  • Jun 10, 2009
    issue 2 (serialScroll: Callback on initialisation) commented on by stephen.tomlinson   -   Once again, great. I shall try out trunk tomorrow. Many thanks.
    Once again, great. I shall try out trunk tomorrow. Many thanks.
  • Jun 10, 2009
    issue 2 (serialScroll: Callback on initialisation) Owner changed by aflesler   -  
    Owner: aflesler
    Owner: aflesler
  • Jun 10, 2009
    issue 2 (serialScroll: Callback on initialisation) changed by aflesler   -   I removed that check (not to scroll if the position didn't change). You can grab the version from trunk if needed, will release this asap.
    Status: Accepted
    Labels: Type-Enhancement Type-Defect
    I removed that check (not to scroll if the position didn't change). You can grab the version from trunk if needed, will release this asap.
    Status: Accepted
    Labels: Type-Enhancement Type-Defect
  • Jun 10, 2009
    issue 2 (serialScroll: Callback on initialisation) reported by stephen.tomlinson   -   Hi again, It would be great to be able to add a callback for the loading of the plugin. I'm trying to add support for disabling buttons. It's pretty easy to add a function to onBefore that disables/enables buttons based on the position of the pane. It would be great however to run this or a similar function when the plugin is initialised. I tried .trigger('goto',[0]) but onBefore isn't actually called unless there is some movement. Many thanks, Stephen
    Hi again, It would be great to be able to add a callback for the loading of the plugin. I'm trying to add support for disabling buttons. It's pretty easy to add a function to onBefore that disables/enables buttons based on the position of the pane. It would be great however to run this or a similar function when the plugin is initialised. I tried .trigger('goto',[0]) but onBefore isn't actually called unless there is some movement. Many thanks, Stephen
  • Jun 10, 2009
    issue 1 (serialScroll: Ability to access settings after initialisatio...) changed by aflesler   -   Hi Stephen It's already implemented in the trunk (in case you need this). I'll release it asap.
    Status: Accepted
    Owner: aflesler
    Labels: Type-Enhancement Type-Defect
    Hi Stephen It's already implemented in the trunk (in case you need this). I'll release it asap.
    Status: Accepted
    Owner: aflesler
    Labels: Type-Enhancement Type-Defect
  • Jun 10, 2009
    issue 1 (serialScroll: Ability to access settings after initialisatio...) reported by stephen.tomlinson   -   Hi there, I'm a big fan of your various plugins and glad to see them moving to a repository. This feature was discussed a little on your blog. A method to get the settings object after serialScroll has been run would be great, espcially for using in the onBefore function. Thanks a lot, Stephen
    Hi there, I'm a big fan of your various plugins and glad to see them moving to a repository. This feature was discussed a little on your blog. A method to get the settings object after serialScroll has been run would be great, espcially for using in the onBefore function. Thanks a lot, Stephen
  • Jun 07, 2009
    r13 ( * Adding a Makefile that can make all plugins at once) committed by aflesler   -   * Adding a Makefile that can make all plugins at once
    * Adding a Makefile that can make all plugins at once
  • Jun 07, 2009
    r12 ( * Updating version and date) committed by aflesler   -   * Updating version and date
    * Updating version and date
  • Jun 07, 2009
    r11 ( * Fixing a misc thing in scrollTo's demo * Adding 2 feat...) committed by aflesler   -   * Fixing a misc thing in scrollTo's demo * Adding 2 features to ajaxFilter.
    * Fixing a misc thing in scrollTo's demo * Adding 2 features to ajaxFilter.
  • Jun 06, 2009
    r10 ( * Adding a header to common.mak) committed by aflesler   -   * Adding a header to common.mak
    * Adding a header to common.mak
  • Jun 05, 2009
    r9 ( * Avoiding the temp file to build SRC files) committed by aflesler   -   * Avoiding the temp file to build SRC files
    * Avoiding the temp file to build SRC files
  • Jun 05, 2009
    r8 ( * Misc) committed by aflesler   -   * Misc
    * Misc
  • Jun 05, 2009
    r7 ( * common.mak finds the plugin name itself * Adding Makef...) committed by aflesler   -   * common.mak finds the plugin name itself * Adding Makefile to the rest of the plugins
    * common.mak finds the plugin name itself * Adding Makefile to the rest of the plugins
  • Jun 05, 2009
    r6 ( * Applying current date to files when built) committed by aflesler   -   * Applying current date to files when built
    * Applying current date to files when built
  • Jun 04, 2009
    r5 ( * Improving the sed replacement) committed by aflesler   -   * Improving the sed replacement
    * Improving the sed replacement
  • Jun 04, 2009
    r4 ( * Adding a function to apply the version number) committed by aflesler   -   * Adding a function to apply the version number
    * Adding a function to apply the version number
  • Jun 04, 2009
    r3 ( * Makefiles provide the version number * The zip was get...) committed by aflesler   -   * Makefiles provide the version number * The zip was getting the versioned-named files * serialScroll and localScroll's makefiles make scrollTo
    * Makefiles provide the version number * The zip was getting the versioned-named files * serialScroll and localScroll's makefiles make scrollTo
  • Jun 04, 2009
    r2 ( * Moving all to this repository) committed by aflesler   -   * Moving all to this repository
    * Moving all to this repository
  • May 30, 2009
    jquery.ajaxFilter-1.0.1.rar (jQuery.AjaxFilter 1.0.1 Zip) file uploaded by aflesler   -  
    Labels: Featured
    Labels: Featured
  • May 30, 2009
    jquery.xhr-1.0.0.zip (jQuery.XHR 1.0.0 Zip) file uploaded by aflesler   -  
    Labels: Featured
    Labels: Featured
  • May 30, 2009
    jquery.xhr-1.0.0[1].zip (jQuery.XHR 1.0.0 Zip) file uploaded by aflesler   -  
    Labels: Featured
    Labels: Featured
  • May 25, 2009
    jquery.scrollTo-1.4.2-min.js (jQuery.ScrollTo 1.4.2 Minified) file uploaded by aflesler
  • May 25, 2009
    jquery.scrollTo-1.4.2.js (jQuery.ScrollTo 1.4.2 Source) file uploaded by aflesler
  • May 25, 2009
    jquery.scrollTo-1.4.2.zip (jQuery.ScrollTo 1.4.2 Zip) file uploaded by aflesler   -  
    Labels: Featured
    Labels: Featured
 
Powered by Google Project Hosting