This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Badge.h | |
// | |
// Created by Simon Madine on 29/04/2010. | |
// Copyright 2010 The Angry Robot Zombie Factory. | |
// MIT licensed | |
// | |
// Converted to Cordova by Joseph Stuhr. | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BackTrack.m | |
// | |
#import "BackTrack.h" | |
@implementation BackTrack | |
- (void)startTrack:(NSMutableArray*)badgeNumber withDict:(NSMutableDictionary*)options { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This code is adapted from the work of Michael Nachbaur | |
* by Simon Madine of The Angry Robot Zombie Factory | |
* 2010-05-04 | |
* MIT licensed | |
* | |
* Converted to Cordova by Joseph Stuhr. | |
*/ | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function similarDate() { | |
var now = new Date(); | |
var sec=now.getSeconds(); | |
if( sec < 10 ) | |
sec='0'+sec; | |
var min=now.getMinutes(); | |
if( min < 10 ) | |
min='0'+min; | |
var hour=now.getHours(); | |
if( hour < 10 ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function DashboardController($scope, $http, $location) { | |
$scope.list = ['ש.עבודה','משימות','הודעות','מערכת','מבחנים']; | |
$scope.test = ['1','2','3','4']; | |
$scope.dis='none'; | |
$scope.start=function () { | |
console.log("hello"); | |
} | |
$scope.show=function (item) { | |
if (item=='מערכת') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app | |
index.html | |
app.js | |
css/ | |
js/ | |
controllers/ | |
youtubeSearch.js | |
services/ | |
views/ | |
main.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section data-ng-controller="TripController"> | |
<h1>Trip Information</h1> | |
<accordion close-others="oneAtATime"> | |
<accordion-group heading="{{group.title}}" ng-repeat="group in groups"> | |
{{group.content}} | |
<ul ng-repeat="link in {{group.links}}"> | |
<li>{{link}}</li>li> | |
</ul> | |
</accordion-group> | |
</accordion> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* nodejs-express-mongoose-demo | |
* Copyright(c) 2013 Madhusudhan Srinivasa <[email protected]> | |
* MIT Licensed | |
*/ | |
/** | |
* Module dependencies. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="admin" data-ng-controller="AdminController"> | |
Routes are | |
<h1> | |
foobar</h1> | |
<ul> | |
<li ng-repeat="route in routes | filter:templateUrl "> | |
r is - {{route.templateUrl}} | |
</li> | |
</ul> | |
</section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.app.factory("CMS", function(Global, $resource) { | |
var _this = this; | |
_this.content = {}; | |
_this.content["index"] = { | |
en: { | |
signupbutton: "sign up now", | |
signuptext: "for more info", | |
picsign: "Your free 10 days trip to Israel starts here", | |
whatstitle: "What's it all about?", |
OlderNewer