Responsive image

About

Will you find a use for wm.js? Who Knows?! This industry I currently work in - Laboratory information management software (call it the LIMS industry for brevity) - tends to produce software that one might call ‘enterprise,’ it is purposed-designed computer software used to satisfy the needs of an organization rather than individual users [1]. How does this relate to the usefulness of a window manager for web browsers? Here's my reasoning: ... nevermind. This is just space filler.


Examples

storing window information using local storage

storing window information using arrays


Creating A Custom Window

			
    wmJs.Views = wmJs.Views || {};

    (function () {
        'use strict';
    
    	/**
    	 * a comment
    	 */
        wmJs.Views.CustomWindow = wmJs.ApplicationWindowView.extend({
    
            template: JST['app/scripts/templates/window_blank.ejs'],
    
            window_render: function () {
            	this.$windowcontent.html(this.template());
            }
    
        });
    
        wmJs.Factories.WindowedApplicationFactory
          .registerApplication('custom_window', 'custom window', '*',
          					   wmJs.Views.CustomWindow);
    })();
			
		

View details »