Jump to content

gbligh

Frog Community Advocate
  • Posts

    526
  • Joined

  • Last visited

Posts posted by gbligh

  1. 55 minutes ago, pdurber said:

    Hi

    Is there any way in which any member of staff can look up the assignments for any student?

    When we have students in isolation it would be useful if the member of staff (we have a rota) could look up if there any assignments outstanding for any of the students so that they can be given useful work to do.

    We use this widget: https://www.frogeducation.com/community/frogcode/frogcode-showcase/studentassignment

  2. 38 minutes ago, ADT said:

    Its not fixed for us??? 

    @gbligh

    That's odd, it's been fine here so far ... I will keep an eye on it though. Are you still Frog3/Learn?

  3. 22 minutes ago, pconkie said:

    Anybody else got a problem with the timetable widget?  I think it thinks we are in a different timezone - everything is 1 hour too late!

    Parents and students want to know if they can come in later tomorrow!

    Yep us too. I have reported it and it's a known bug. They said it will be fixed ASAP.

  4. This looks to be fixed now in the Frank Patch :)

    Is there any plans for the app to be updated to take advantage of the iPhone screens with the notch? Eg. iPhone X etc?

  5. 3 hours ago, pconkie said:

    @gbligh @ADT I have no idea of the performance impact of this and i'm sure there is a better internal frog way of doing this but... as a bit of fun and for the challenge.....

    1. On desktop devices frog sites open within a page division called ui-os-desktop 

    2.If we could 'watch' this division for changes - specifically additions - we could catch when sites are opened, dragged, resized and closed.

    3. If we detect an addition and think it is a full screen site, then we could trigger the minimise.

    A quick google reveals that this is possible by placing the following in a html widget on your dashboards:

    
    <script>
        //set a watch on frog
        var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
    
        // define a new observer
        var obs = new MutationObserver(function(mutations, observer) {
            // look through all mutations that just occured
            for(var i=0; i<mutations.length; ++i) {
                // look through all added nodes of this mutation
                for(var j=0; j<mutations[i].addedNodes.length; ++j) {
                    var $possibleSite = $(mutations[i].addedNodes[j]);
                    //is it fullscreen?
                    if ($possibleSite.hasClass("fullscreen_dialog")) {
                        //if so trigger the minimise button
                        $possibleSite.find(".ui-minimiser").trigger("click");
                    }
                }
            }
        });
    
        // have the observer observe for changes in children
        obs.observe($(".ui-os-desktop").get(0), {
            childList: true
        });
    
    </script>

     

    Hi Paul,

    Just had a go and it seems to work. As you say, not sure how it affects everything else in the platform!

    Is there a way to specify what size it minimises too? And also so it can be centred on the screen? This is me now being very OCD!!!

    This code won't work on mobile devices too right?

  6. Is there a way this can be added into a HTML widget so that it defaults all sites to open a certain size? I'm just thinking it would really help people navigate. We STILL have staff/kids/parents that try and click the back button in the browser to, naturally, go back and end up logging themselves out.

    I'd rather all sites opened in a smaller way and they have the option to make them bigger. Not sure what thoughts are about that?

    @ADT

    @Graham Quince

    @pconkie

    @Adam

  7. 1 hour ago, pdurber said:

    The student photo's aren't re-sizing to fit in the photo placeholder. Any ideas? It's also happening in the Old frogseats, so maybe a system setting at our end? They all look like they are peering one-eyed through a circular keyhole..

    Regards

    Paul

    We also get this

×
×
  • Create New...