ionic restructure

This commit is contained in:
Adam Bradley
2013-08-29 09:13:07 -05:00
parent 54e6d98343
commit 852613cb82
83 changed files with 7885 additions and 3564 deletions

12
connectors/angular/angular-glue.js vendored Normal file
View File

@ -0,0 +1,12 @@
/* used to tie angular.js with the framework */
/* nowhere should the framework reference angular.js */
/* nowhere in angular.js should it reference the framework */
var ionic = angular.module('ionic', ['ngTouch']);
ionic.directive('panel', ['$parse', '$timeout', '$rootElement',
function($parse, $timeout, $rootElement) {
return function(scope, element, attrs) {
};
}
]);