github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

anutron / clientcide

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 33
    • 6
  • Source
  • Commits
  • Network (6)
  • Issues (21)
  • Downloads (8)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (7)
    • 2.2.0
    • 2.1.0
    • 2.0.3
    • 2.0.2
    • 2.0.1
    • 2.0.0
    • 1.2.2
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

The Clientcide Javascript Libraries — Read more

  cancel

http://www.clientcide.com/js

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

adding detach method for SimpleCarousel 
Aaron Newton (author)
Sun Jan 31 18:06:13 -0800 2010
commit  8a66868559241ee2f43064ed3151c1c95132b5ff
tree    2252d2a3309525d7dde2714be780f348a4ad0046
parent  cf208ffa2cc7a35599ba46a9cbb64e2b49c341f9
clientcide /
name age
history
message
file .gitignore Mon Apr 27 11:36:02 -0700 2009 adding build.local.yml to git ignore [Aaron Newton]
file .gitmodules Thu Jun 11 17:26:20 -0700 2009 moving UnitTester into /Tests [Aaron Newton]
directory Assets/ Tue Jun 30 18:00:39 -0700 2009 udpating stickywin images to be a bit wider upd... [Aaron Newton]
directory Compatibility/ Sun Nov 01 17:26:23 -0800 2009 fixes #8; popup details compat layer blowing aw... [Aaron Newton]
directory Docs/ Sun Jan 31 18:06:13 -0800 2010 adding detach method for SimpleCarousel [Aaron Newton]
file README.md Thu Nov 05 22:20:32 -0800 2009 updating readme [Aaron Newton]
directory Source/ Sun Jan 31 18:06:13 -0800 2010 adding detach method for SimpleCarousel [Aaron Newton]
directory Tests/ Fri Nov 20 16:50:02 -0800 2009 adding a new stickywin modal test. [Aaron Newton]
file build.rb Wed Apr 01 15:35:02 -0700 2009 working on 1.2.2 [Aaron Newton]
file build.yml Wed Apr 01 15:35:02 -0700 2009 working on 1.2.2 [Aaron Newton]
file libs.json Wed Jun 10 16:55:21 -0700 2009 updating version to 2.1.0 [Aaron Newton]
README.md

The Clientcide Javascript Repository

Clientcide's code is released under the Open Source MIT license, which gives you the possibility to use it and modify it in every circumstance. It is built on the MooTools JavaScript framework and has dependencies on MooTools Core and MooTools More.

Links

  • Download Builder
  • Docs
  • Tutorials/Examples
  • Bugs

Changes in 2.2.0

  • Modalizer is deprecated in favor of Mask ** compat file is just the deprecated library; does not convert to Mask instances but rather just returns Modalizer as it always did
  • StickyWin.Modal has new options for Mask; this is a breaking change
  • Removed Element.Delegation (now in MooTools More; unchanged)
  • Deprecated DollarE
  • Deprecated DollarG
  • Fupdate is now Form.Request in MooTools More; see compat files Fupdate.Prompt is now Form.Request.Prompt Fupdate.Append.Prompt is now Form.Request.Append.Prompt Fupdate.AjaxPrompt is now Form.Request.AjaxPrompt Fupdate.Append.AjaxPrompt are now Form.Request.Append.AjaxPrompt
  • FormValidator got renamed in MooTools More to Form.Validator (the old name is preserved); updated FormValidator.Tips to Form.Validator.Tips (again, the old name still works).
  • Collapsable is now Collapsible (that's correct, I cannot spell). The old name is preserved (though the file name itself changed; update your build scripts).
  • HtmlTable moved to MooTools More. No breaking changes, but the -more version has new features.
  • Added Italian, Spanish translations for Simple Editor
  • New StickyWin features Z-index Ordering! changing default value for allowMultipleByClass in StickyWin to true Added setCaption method to StickyWin.UI onUpdate event for StickyWin.Ajax
  • added detach method to MooScroller
  • dbug should now work in IE8
  • offset options are now additive for pointy tip
  • numerous bug fixes

Changes in 2.1.0

  • MultipleOpenAccordion
    • now only takes options
    • openAll defaults to false
  • CiUI (iPhone code)
    • removed from library; download at google code
  • Browser.Extras
    • methods now either part of URI class or stand alone string methods
    • Browser.qs deprecated entirely; use new URI().getData()
  • Class.Binds
    • mutator is now upper case (Binds instead of binds)
  • Class.Refactor
    • no longer an instance method (you can'd to Foo.refactor({props}) - you must do Foo = Class.refactor(Foo, props))
  • Element.Forms
    • deprecated Element property inputValue; too confusing!
  • Element.Position
    • Element.setPosition is now Element.position and vice versa. I.e. Element.position (which in MooTools 1.2.1 took an object with x/y coords for top/left) is now Element.setPosition. Element.setPosition (which in the previous Clientcide libs took options for relative positioning) is now Element.position.
  • Element.Shortcuts
    • Element.isVisible is Element.isDisplayed
  • IframeShim
    • options:zindex renamed to zIndex
  • OverText
    • no longer takes a collection of inputs.
    • .showTxt > .show, .hideTxt > .hide
    • .hide and .show no longer take the element and 'focus' arguments.
    • .repositionAll is gone; .repositionOverTxt is now just .reposition; it does not take an argument
  • String.Extras
    • findAllEmails gone, too specific
  • Date
    • deprecated String.zeroise
  • JsonP
    • renamed to Request.JSONP
    • constructor/send/prepareUrl take options hash, no longer an url directly (like Request)
    • user can change options on the fly when calling send() with a new hash, reusing the object
    • added check method. support for link: ignore, cancel, chain (like Request)
    • added success, request and cancel events
    • data can be a hash or string now (like Request)
    • queryString option gone
    • makeUrl logic now moved to new getScript(), which directly returns the script
    • changed how it essentially works. instead of storing the object reference, we store a new function every time a request is made, that keeps a reference of the script element and the object instance.
    • abortAfter and timeout gone. there's now a single timeout for retries and for when retries run out.
    • globalFunction gone, deemed useless
  • Request.Queue
    • event names all renamed; onRequestStart >> onRequest, onRequestSuccess >> onSuccess, etc
  • StickyWin
    • StickyWin.Fx is now just StickyWin.
  • MultipleOpenAccordion
    • Now only takes an options argument; container argument is deprecated.

Breaking Changes in MooTools More 1.2.2.1

  • FormValidator
    • The base FormValidator class no longer injects advice into the document. You must use FormValidator.Inline for this behavior.
  • Class.refactor
    • this.parent is no longer useful; you must use this.previous
  • String.cleanQueryString
    • if you specify a custom message its arguments are now key, value (before it was set where set was "key=value").
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server