Sha256: 03bcaa07de5fedb0a829385bb2d5e63be93b6c5ebb23f49f87856c62d246de59

Contents?: true

Size: 1.83 KB

Versions: 1

Compression:

Stored size: 1.83 KB

Contents

$(document).ready(function() {

    $(".on_the_spot_editing").mouseover(function() {
        $(this).css('background-color', '#EEF2A0');
    });
    $(".on_the_spot_editing").mouseout(function() {
        $(this).css('background-color', 'inherit');
    });
    $('.on_the_spot_editing').each(initializeOnTheSpot);

});

function initializeOnTheSpot(n){
    var el           = $(this),
        auth_token   = el.attr('data-auth'),
        data_url     = el.attr('data-url'),
        ok_text      = el.attr('data-ok') || 'OK',
        cancel_text  = el.attr('data-cancel') || 'Cancel',
        tooltip_text = el.attr('data-tooltip') || 'Click to edit ...',
        edit_type    = el.attr('data-edittype'),
        select_data  = el.attr('data-select'),
        rows         = el.attr('data-rows'),
        columns      = el.attr('data-columns'),
        load_url     = el.attr('data-loadurl'),
        selected     = el.attr('data-selected');

    var options = {
        tooltip: tooltip_text,
        placeholder: tooltip_text,
        cancel: cancel_text,
        submit: ok_text,
        select: selected,
        onerror: function (settings, original, xhr) {
            original.reset();
            //just show the error-msg for now
            alert(xhr.responseText);
        },
        submitdata: {
          authenticity_token: auth_token,
          _method: 'put'
        }
    };
    if (edit_type != null) {
        options.type = edit_type;
    }
    if (edit_type == 'select') {
        if (select_data != null) {
            options.data = select_data;
            options.submitdata['select_array'] = select_data;
        }
        if (load_url != null) {
            options.loadurl = load_url;
        }
    }
    else if (edit_type == 'textarea') {
        options.rows = rows;
        options.cols = columns;
    }

    el.editable(data_url, options)
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
on_the_spot-0.0.11 lib/generators/on_the_spot/install/templates/on_the_spot.js