[Pages] Move page plugin into platform

Move Page plugin from prototype location into
platform, WTD-1145.
This commit is contained in:
Victor Woeltjen
2015-04-27 14:46:33 -07:00
parent 6e24052a3d
commit 01e2840aae
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/*global define*/
define(
[],
function () {
"use strict";
function Controller($sce) {
return {
trust: function (url) {
return $sce.trustAsResourceUrl(url);
}
};
}
return Controller;
}
);