This commit is contained in:
Max Lynch
2013-08-28 15:29:42 -05:00
parent b62a42aa6a
commit b024e66812
24 changed files with 26018 additions and 1987 deletions

View File

@ -1,3 +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 */
/* 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) {
};
}
]);