<div class="container">
Main content! Non-angular pieces of our app can go here.
<div class="angularApp" ng-app="myApp">
<div ng-controller="MyController as vm">
{{ vm.message }}
</div>
</div>
</div>
CSS
.angularApp{
border: thin solid black;
}
JavaScript
var MyModule = {
Main: {},
Angular: {}
};
MyModule.Main = function () {
var sayHello = function () {
return "Hello from Main module!";
}
return {
SayHello: sayHello
};
}();
MyModule.Angular = function () {
"use strict";
//App initialization
var app = angular.module("myApp", []);
app.controller("MyController", MyController);
function MyController() {
var vm = this;
vm.message = MyModule.Main.SayHello();
}
}();
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Fiddle Pages
Your fiddles accessible under a custom domain and a vanity path - the simplest hosting for your personal project.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Get Fiddle Pages with PRO
Your fiddles accessible under a custom domain and a vanity path - the simplest hosting for your personal project.