Skip to content

52 in 52 – Class 6

I was lucky enough to enjoy Professor Paula Cancro’s Digital Literacy in the Workplace class.  We spent much of the class accessing Windows 2016, shared folders in OneDrive, which allow students to collaborate and chat online while they work on shared projects, from home, work, school, even while traveling. 

The students are quite adept at technology, and enjoyed the chat feature, as well as the flexibility that OneDrive allows them.  At CW, we have been utilizing GoogleDocs for quite some time to accomplish the same thing.  2017 marks our Windows 2016 launch.  We hope that it will better integrate access to applications that students want and need with the ability to work individually and in groups more fluidly.  It is also a social endeavor, which doesn’t hurt!

It was a constructive and fun class.

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });