diff --git a/400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj b/400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj
index 14a83aa..94851ca 100644
--- a/400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj
+++ b/400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj
@@ -96,7 +96,9 @@
-
+
+ Designer
+
diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
index cb61dd4..ee44509 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
@@ -2745,35 +2745,6 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
});
};
- function PrintDivContentByID(id) {
- var contents = document.getElementById(id).innerHTML;
- var frame1 = $('');
- frame1[0].name = "frame1";
- frame1.css({ "position": "absolute", "top": "-1000000px" });
- $("body").append(frame1);
-
- var frameDoc = frame1[0].contentWindow ? frame1[0].contentWindow : frame1[0].contentDocument.document ? frame1[0].contentDocument.document : frame1[0].contentDocument;
-
- frameDoc.document.open();
- //Create a new HTML document.
- frameDoc.document.write('');//Print Preview
- frameDoc.document.write('');
- //Append the external CSS file.
- frameDoc.document.write('');
- frameDoc.document.write('');
- //Append the DIV contents.
- frameDoc.document.write(contents);
- frameDoc.document.write('');
- frameDoc.document.close();
-
- setTimeout(function () {
- window.frames["frame1"].focus();
- window.frames["frame1"].print();
- frame1.remove();
- }, 250);
-
- console.log('close')
- }
-
+
}]
);
\ No newline at end of file