Features

Github


        src
        www
            |_App
                |_main-built.js
            |_Content
                |_images
                |_*
            |_Scripts   
                |_Durandal
                |_*
            |_config.xml
            |_index.html
    

To Create a PhoneGap Build App

To Create App Icons

You can generate Android icons using this site Then configure the config.xml to use them in the build

To get the jquery.mmenu plugin to work, a durandal custom binding handler was created in
services/binding-handlers.js. This file is loaded at app start in main.js.

    composition.addBindingHandler('mmenu', {
        init: function (element, valueAccessor, 
                    allBindingsAccessor, viewModel) {
            $('a#open-icon-menu').click(function (e) {
                e.stopImmediatePropagation();
                e.preventDefault();
                $(element).trigger('toggle.mm');
            });
            $(element).mmenu();
        }
    });