Skip to content

Releases: bartkamphorst/fsc-c

v2.0

12 Oct 14:22
Compare
Choose a tag to compare

This release contains breaking changes. Most notably:

  • The CSS classes have changed to include an fsc-c namespace (including fsc-c-circles, fsc-c-draggable, fsc-c-circle-container);
  • FSC-C now observes an event pattern to propagate the data. This simplifies the usage of FSC-C, but it does require end users to implement an event handler:
$( ".fsc-c-draggable" ).on( "fsc-c:data", function(event, data) {
  // process the data
  console.log(data);  
})

v.1.0

10 Oct 13:10
0c62eec
Compare
Choose a tag to compare
Merge pull request #2 from TracyRad/Qualtrics-DataExport

Update fsc-c.js with a suggested code block for saving all embedded data when multiple measures of self-continuity are present on a single page.