Sha256: 0ae4f32698b0ab6f8424630f40d28fae7e44efc2a28fdcb50ed0ada2b3f2d2f1

Contents?: true

Size: 231 Bytes

Versions: 6

Compression:

Stored size: 231 Bytes

Contents

function sortable(event, column) {
  var direction = $("#direction").val();

  $("#sort").val(column);
  $("#direction").val(direction == "desc" ? "asc" : "desc");

  $('#direction').parent().submit();

  event.preventDefault();
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
opale-0.1.31 assets/javascripts/sortable.js
opale-0.1.4 assets/javascripts/sortable.js
opale-0.1.3 assets/javascripts/sortable.js
opale-0.1.2 assets/javascripts/sortable.js
opale-0.1.1 assets/javascripts/sortable.js
opale-0.1.0 assets/javascripts/sortable.js