public
Description: Add jQuery to Frog CMS admin interface.
Homepage: http://www.appelsiini.net/
Clone URL: git://github.com/tuupola/frog_jquery_ui.git
name age message
file README.textile Thu Feb 05 07:47:42 -0800 2009 Initial commit. [tuupola]
file index.php Tue Mar 10 02:37:38 -0700 2009 jQuery UI 1.7 [tuupola]
file jquery_ui.js Tue Mar 10 02:37:38 -0700 2009 jQuery UI 1.7 [tuupola]
README.textile

What?

Plugin to add jQuery UI to Frog CMS admin interface. By using this plugin instead of manually including jQuery UI developers can be sure libraries do not get accidentally included several times. Also there is no need to instruct users to manually edit Frog CMS layout files.

Install

Copy plugin files to frog/plugins/jquery_ui_/ folder.

cd frog/plugins/
git clone git://github.com/tuupola/frog_jquery_ui.git jquery_ui_

or

cd frog/plugins/
wget http://www.appelsiini.net/download/frog_jquery_ui.tar.gz
tar -xzvf frog_jquery_ui.tar.gz

Go to admin and enable jQuery UI plugin.

Usage

jQuery(function($) {
    $("#draggable").draggable({
        revert: true
    });
});