mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
13 lines
395 B
JavaScript
13 lines
395 B
JavaScript
/* 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) {
|
|
};
|
|
}
|
|
]);
|