memberpicker search updates

This commit is contained in:
perploug
2013-10-10 12:43:59 +02:00
parent 0d4ee6e5d1
commit 59f711f802
9 changed files with 66 additions and 32 deletions

View File

@@ -1,15 +1,21 @@
yepnope({
load: "##JsInitialize##",
load: [
'lib/jquery/jquery-2.0.3.min.js',
'lib/angular/1.1.5/angular.min.js',
'lib/underscore/underscore.js',
],
complete: function () {
//we need to set the legacy UmbClientMgr path
UmbClientMgr.setUmbracoPath('"##UmbracoPath##"');
yepnope({
load: "##JsInitialize##",
complete: function () {
jQuery(document).ready(function () {
angular.bootstrap(document, ['umbraco']);
//we need to set the legacy UmbClientMgr path
UmbClientMgr.setUmbracoPath('"##UmbracoPath##"');
jQuery(document).ready(function () {
angular.bootstrap(document, ['umbraco']);
});
}
});
}
});