From 9a5a0b83ba877ae660c456cf3f0ae6e45c39f150 Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Tue, 15 Dec 2015 22:59:13 +0100 Subject: [PATCH] example: move app declaration to app.js avoid spaghetti code and simplify the way to test --- example/index.html | 4 +--- example/js/app.js | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 example/js/app.js diff --git a/example/index.html b/example/index.html index 62c765a..1f850e1 100644 --- a/example/index.html +++ b/example/index.html @@ -19,9 +19,7 @@

{{pdfName}}

- + diff --git a/example/js/app.js b/example/js/app.js new file mode 100644 index 0000000..7b1d42c --- /dev/null +++ b/example/js/app.js @@ -0,0 +1 @@ +var app = angular.module('App', ['pdf']);