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
// !$*UTF8*$! | |
{ | |
archiveVersion = 1; | |
classes = { | |
}; | |
objectVersion = 46; | |
objects = { | |
/* Begin PBXBuildFile section */ | |
4D4B9C15176140AB003673A0 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D4B9C14176140AB003673A0 /* UIKit.framework */; }; |
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
var jspaths = ['webroot/js-dev/classes/**.js','webroot/js-dev/helpers.js','webroot/js-dev/main.js']; | |
var csspaths = ["webroot/sass/*.scss", "webroot/sass/partials/*.scss"]; | |
var templatepaths = []; | |
var concatpaths = [].concat(jspaths); | |
module.exports = function(grunt) { | |
grunt.initConfig({ |
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
- (void)setPaidOnServer | |
{ | |
[KGStatusBar showWithStatus: @"Validating your order"]; | |
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://student.howest.be"]]; | |
NSMutableURLRequest *request = [httpClient requestWithMethod:@"GET" | |
path:[NSString stringWithFormat:@"thomas.degry/20122013/MAIV/FOOD/api/creations/pay/%@/%@", self.userID, self.burgerID] | |
parameters:nil]; | |
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request]; | |
[httpClient registerHTTPOperationClass:[AFHTTPRequestOperation class]]; | |
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { |
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
/* globals Rating */ | |
/* globals Settings */ | |
var Gallery = (function () { | |
var Gallery = function (options) { | |
_.bindAll(this); | |
this.options = { | |
gallery: '.gallery', | |
item: '.gallery-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
/* line 1, ../sass/modules/_console.scss */ | |
#graphic-output { | |
-webkit-transition-property: all; | |
-moz-transition-property: all; | |
-o-transition-property: all; | |
transition-property: all; | |
-webkit-transition-duration: 0.3s; | |
-moz-transition-duration: 0.3s; | |
-o-transition-duration: 0.3s; |
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
/* line 1, ../sass/modules/_console.scss */ | |
#graphic-output { | |
-webkit-transition-property: all; | |
-moz-transition-property: all; | |
-o-transition-property: all; | |
transition-property: all; | |
-webkit-transition-duration: 0.3s; | |
-moz-transition-duration: 0.3s; | |
-o-transition-duration: 0.3s; | |
transition-duration: 0.3s; |
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
<script> | |
//<![CDATA[ | |
$(document).ready(function() { | |
var timer; | |
var timeOut = 300; // delay after last keypress to execute filter | |
var testing = true; | |
var catalogue = null; | |
var previousValue = ''; |
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
var CollisionDetection = (function() { | |
function CollisionDetection() { | |
} | |
CollisionDetection.checkCollision = function(shapeA, shapeB) { | |
var vX = (shapeA.x + (shapeA.width/2)) - (shapeB.x + (shapeB.width / 2)); | |
var vY = (shapeA.y + (shapeA.height/2)) - (shapeB.y + (shapeB.height / 2)); |
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->autoRender = false; | |
$content = $this->request->data['editor']; | |
$title = 'Newsletter R.T.S'; | |
$name = 'R.T.S. Ieper'; | |
$from_address = '[email protected]'; | |
// $to = ''; | |
// $subscribers = $this->Newsletter->find('all'); | |
// foreach ($subscribers as $key => $subscriber) { |
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
<?php | |
if(!empty($_SESSION["isAdmin"])): | |
?> | |
<a href="addProduct.php">Add Product</a> | |
<? | |
endif; | |
?> | |
---- |
OlderNewer