Skip to content

Instantly share code, notes, and snippets.

@emersion
Last active December 18, 2015 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emersion/5789122 to your computer and use it in GitHub Desktop.
Save emersion/5789122 to your computer and use it in GitHub Desktop.
Create a basic window in Symbiose
//Creation de la fenetre
var $window = $.w.window.main({
title: 'Test',
resizable: false,
icon: 'status/error'
});
//Definition de son contenu
var $windowContent = $window.window('content');
$windowContent.html('<p>Hello World !</p>');
//Ouverture de la fenetre
$window.window('open');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment