Skip to content

Instantly share code, notes, and snippets.

View joshkurz's full-sized avatar

Josh Kurz joshkurz

View GitHub Profile
@joshkurz
joshkurz / app.html
Created September 12, 2012 20:17
angular calendar
<!doctype html>
<html ng-app="dialog">
<head>
<title>Full Calendar Test</title>
<link rel="stylesheet" type="text/css" href="http://dl.dropbox.com/u/1510510/temp/demo/fullcalendar.css"></link>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css"></link>
<script src="http://code.jquery.com/jquery-1.7.1.js"></script>
<script src="https://raw.github.com/arshaw/fullcalendar/master/lib/jquery-ui-1.8.23.custom.min.js"></script>
<script src="http://code.angularjs.org/1.0.1/angular-1.0.1.js" ng:autobind></script>
@joshkurz
joshkurz / fullcalendar.js.min
Created August 20, 2012 10:25
Full Calendar JS File - Minified
/*
FullCalendar v1.5.3
http://arshaw.com/fullcalendar/
Use fullcalendar.css for basic styling.
For event drag & drop, requires jQuery UI draggable.
For event resizing, requires jQuery UI resizable.
Copyright (c) 2011 Adam Shaw
@joshkurz
joshkurz / app.js
Created August 9, 2012 03:21
AngularJs-twitterBootstrap-wysiHtml5
var demoApp = angular.module('demoApp', ['ngResource'], function($locationProvider) {
$locationProvider.hashPrefix('');
});
function MainCtrl($scope, Serv) {
$scope.selectedItem = {
value: 0,
label: ''
};
$scope.Wrapper = Serv;
@joshkurz
joshkurz / angular-ui.js
Created July 22, 2012 04:12
Angular Google Maps with address tags
/**
* AngularUI for AngularJS
* v0.1.0
*
* @link http://angular-ui.github.com/
*/
angular.module('ui.config', []).value('ui.config', {});
angular.module('ui.filters', ['ui.config']);
angular.module('ui.directives', ['ui.config']);